[]
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.
public int TailColumnEnd { get; set; }
Public Property TailColumnEnd As Integer
PageContentInfo pageContent = new PageContentInfo();
pageContent.TailColumnStart = 4;
pageContent.TailColumnEnd = 6;
int endColumn = pageContent.TailColumnEnd;