[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDocumentProperty.Name

Name Property

Name

Gets the name of the property.

Declaration
string Name { get; }
ReadOnly Property Name As String
Property Value
Type Description
string

The name of the property.

Examples
worksheet.Range["A1"].Value = "Hello";
workbook.Names.Add("Headings", "=Sheet1!$A$1");
IDocumentProperty property = workbook.CustomDocumentProperties.AddLinkToContent("Title", "Headings");
string name = property.Name;