[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting.TitleColumnStart

TitleColumnStart Property

TitleColumnStart

Gets or sets the start index of the columns that belong to the title area of the range.

This value identifies the first title column in the RepeatSetting. Title columns are the columns at the left side of the associated range that can be repeated during pagination.

Declaration
public int TitleColumnStart { get; set; }
Public Property TitleColumnStart As Integer
Examples
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TitleColumnStart = 1;
repeatSetting.TitleColumnEnd = 3;
int titleColumnStart = repeatSetting.TitleColumnStart;