You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
652 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Base class for all page breaks.
///</summary>
public class PageBreak
{
// Methods
internal PageBreak(PageBreak source) : this(source.breakIndex, source.firstLimit, source.lastLimit)
{
}
internal PageBreak(int breakIndex, int firstLimit, int lastLimit)
{
this.breakIndex = breakIndex;
this.firstLimit = firstLimit;
this.lastLimit = lastLimit;
}
// Fields
internal int breakIndex;
internal int firstLimit;
internal int lastLimit;
}
}