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