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