[]
Gets or sets the revision number of the document.
This property is not updated automatically when the document is modified.
string RevisionNumber { get; set; }
Property RevisionNumber As String
| Type | Description |
|---|---|
| string | The revision number stored in the built-in document properties. |
IBuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
properties.RevisionNumber = "5";
string revisionNumber = properties.RevisionNumber;