[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBuiltInDocumentPropertyCollection.Pages

Pages Property

Pages

Gets or sets an estimate of the number of pages in the document.

Declaration
int Pages { get; set; }
Property Pages As Integer
Property Value
Type Description
int

The estimated number of pages in the document.

Examples
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.Pages = 12;
int pages = properties.Pages;