[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDocumentProperty.LinkToContent

LinkToContent Property

LinkToContent

Gets whether this document property is linked to workbook content.

Declaration
bool LinkToContent { get; }
ReadOnly Property LinkToContent As Boolean
Property Value
Type Description
bool

true if this property is linked to workbook content; otherwise, false.

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