[]
Gets or sets the title of the document.
public string Title { get; set; }
Public Property Title As String
| Type | Description |
|---|---|
| string | The title of the document. |
DocumentProperties properties = new DocumentProperties();
properties.Title = "Quarterly Sales Summary";
string title = properties.Title;