[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PageContentInfo.TailColumnEnd

TailColumnEnd Property

TailColumnEnd

Gets or sets the end index of the columns that are printed at the right of the page.

This property identifies the last column in the tail-column area of the page content.

Declaration
public int TailColumnEnd { get; set; }
Public Property TailColumnEnd As Integer
Examples
PageContentInfo pageContent = new PageContentInfo();
pageContent.TailColumnStart = 4;
pageContent.TailColumnEnd = 6;
int endColumn = pageContent.TailColumnEnd;