[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting.TailRowStart

TailRowStart Property

TailRowStart

Gets or sets the start index of the rows that belong to the tail area of the range.

This value identifies the first tail row in the RepeatSetting. Tail rows are the rows at the end of the associated range that can be repeated during pagination.

Declaration
public int TailRowStart { get; set; }
Public Property TailRowStart As Integer
Examples
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TailRowStart = 2;
repeatSetting.TailRowEnd = 4;
int tailRowStart = repeatSetting.TailRowStart;