[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.Title

Title Property

Title

Gets or sets the title of the document.

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

The title of the document.

Examples
DocumentProperties properties = new DocumentProperties();
properties.Title = "Quarterly Sales Summary";
string title = properties.Title;