API Reference
Class
LegacyXlsHyperlink
Represents a hyperlink parsed from a legacy XLS worksheet.
Inheritance
- Object
- LegacyXlsHyperlink
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property LegacyXlsWorksheet.Hyperlinks
Constructors
public LegacyXlsHyperlink(Int32 startRow, Int32 startColumn, Int32 endRow, Int32 endColumn, String target, String displayText = null, Boolean isExternal = true, String tooltip = null) #Creates a parsed legacy XLS hyperlink.
Parameters
- startRow System.Int32
- startColumn System.Int32
- endRow System.Int32
- endColumn System.Int32
- target System.String
- displayText System.String = null
- isExternal System.Boolean = true
- tooltip System.String = null
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public Int32 StartRow { get; } #Gets the first 1-based row covered by the hyperlink.
public Int32 StartColumn { get; } #Gets the first 1-based column covered by the hyperlink.
public Int32 EndRow { get; } #Gets the last 1-based row covered by the hyperlink.
public Int32 EndColumn { get; } #Gets the last 1-based column covered by the hyperlink.
public Boolean IsExternal { get; } #Gets whether the hyperlink target is an external URI rather than an internal workbook location.
public String Target { get; } #Gets the hyperlink target URI or internal workbook location.
public String DisplayText { get; } #Gets optional display text stored in the hyperlink object.
public String Tooltip { get; } #Gets optional ScreenTip text stored in a companion HLinkTooltip record.