[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting.TailColumnEnd

TailColumnEnd Property

TailColumnEnd

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

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