[]
Gets or sets an estimate of the number of pages in the document.
int Pages { get; set; }
Property Pages As Integer
| Type | Description |
|---|---|
| int | The estimated number of pages in the document. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.Pages = 12;
int pages = properties.Pages;