[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting.TailRowEnd

TailRowEnd Property

TailRowEnd

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

This value identifies the last 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 TailRowEnd { get; set; }
Public Property TailRowEnd As Integer
Examples
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TailRowStart = 2;
repeatSetting.TailRowEnd = 4;
int tailRowEnd = repeatSetting.TailRowEnd;