[]
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.
public int TitleColumnStart { get; set; }
Public Property TitleColumnStart As Integer
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.TitleColumnStart = 1;
repeatSetting.TitleColumnEnd = 3;
int titleColumnStart = repeatSetting.TitleColumnStart;