[]
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.
public int TailRowStart { get; set; }
Public Property TailRowStart As Integer
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TailRowStart = 2;
repeatSetting.TailRowEnd = 4;
int tailRowStart = repeatSetting.TailRowStart;