[]
Gets whether this document property is linked to workbook content.
bool LinkToContent { get; }
ReadOnly Property LinkToContent As Boolean
| Type | Description |
|---|---|
| bool | true if this property is linked to workbook content; otherwise, false. |
worksheet.Range["A1"].Value = "Hello";
workbook.Names.Add("Headings", "=Sheet1!$A$1");
IDocumentProperty property = workbook.CustomDocumentProperties.AddLinkToContent("Title", "Headings");
bool linkToContent = property.LinkToContent;