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