[]
Gets or sets the name of the application that created the original document.
public string Creator { get; set; }
Public Property Creator As String
| Type | Description |
|---|---|
| string | The name of the application that created the original document, or null if it has not been set. |
DocumentProperties properties = new DocumentProperties();
properties.Creator = "Report Designer";
string creator = properties.Creator;