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