[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.Creator

Creator Property

Creator

Gets or sets the name of the application that created the original document.

Declaration
public string Creator { get; set; }
Public Property Creator As String
Property Value
Type Description
string

The name of the application that created the original document, or null if it has not been set.

Examples
DocumentProperties properties = new DocumentProperties();
properties.Creator = "Report Designer";
string creator = properties.Creator;