[]
Gets or sets the name of the person that created the document.
public string Author { get; set; }
Public Property Author As String
| Type | Description |
|---|---|
| string | The name of the person that created the document. Returns null if no author has been set. |
DocumentProperties properties = new DocumentProperties();
properties.Author = "Author";
string author = properties.Author;