API Reference

Class

LegacyXlsHyperlink

Namespace OfficeIMO.Excel.LegacyXls.Model
Assembly OfficeIMO.Excel
Modifiers sealed

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

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 requiredposition: 0
startColumn System.Int32 requiredposition: 1
endRow System.Int32 requiredposition: 2
endColumn System.Int32 requiredposition: 3
target System.String requiredposition: 4
displayText System.String = null optionalposition: 5
isExternal System.Boolean = true optionalposition: 6
tooltip System.String = null optionalposition: 7

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.