[]
Gets or sets the start index of the columns that belong to the tail area of the range.
This value identifies the first tail column in the RepeatSetting. Tail columns are the columns at the end of the associated range that can be repeated during pagination.
public int TailColumnStart { get; set; }
Public Property TailColumnStart As Integer
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TailColumnStart = 2;
repeatSetting.TailColumnEnd = 4;
int tailColumnStart = repeatSetting.TailColumnStart;