[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.Author

Author Property

Author

Gets or sets the name of the person that created the document.

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

The name of the person that created the document. Returns null if no author has been set.

Examples
DocumentProperties properties = new DocumentProperties();
properties.Author = "Author";
string author = properties.Author;