[]
Gets or sets the page content information for this printed page.
The returned PageContentInfo describes the worksheet content that belongs to the page during pagination and printing, such as the printed range, repeated title or tail rows and columns, header visibility, and zoom factor.
public PageContentInfo PageContent { get; set; }
Public Property PageContent As PageContentInfo
PageInfo pageInfo = new PageInfo();
PageContentInfo pageContent = new PageContentInfo();
pageContent.Range = worksheet.Range["A1:C5"];
pageInfo.PageContent = pageContent;
PageContentInfo content = pageInfo.PageContent;