[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDocumentProperty.LinkSource

LinkSource Property

LinkSource

Gets the source of the linked content for this document property.

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

The linked content source.

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