[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting.TailColumnStart

TailColumnStart Property

TailColumnStart

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.

Declaration
public int TailColumnStart { get; set; }
Public Property TailColumnStart As Integer
Examples
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TailColumnStart = 2;
repeatSetting.TailColumnEnd = 4;
int tailColumnStart = repeatSetting.TailColumnStart;