[]
Gets the name of the property.
string Name { get; }
ReadOnly Property Name As String
| Type | Description |
|---|---|
| string | The name of the property. |
worksheet.Range["A1"].Value = "Hello";
workbook.Names.Add("Headings", "=Sheet1!$A$1");
IDocumentProperty property = workbook.CustomDocumentProperties.AddLinkToContent("Title", "Headings");
string name = property.Name;