Implements

Constructors

Accessors

  • get address(): string
  • This can be a url or a cell address. Note - sheet address need to start with a #

    Returns string

  • get history(): boolean
  • Specifies whether to add this URI to the history when navigating to it.

    Returns boolean

    Default Value

    true
    
  • get tgtFrame(): string
  • Specified the target frame when opening this Hyperlink.

    Returns string

    Default Value

    newWindow
    
  • get tooltip(): string
  • A text that can show addition information about the link that will be displayed as a tooltip.

    Returns string

    Remark

    Excel has an undocumented tooltip length limit of 255 characters.

Methods

  • Returns Partial<{
        address: string;
        history?: string | Partial<boolean>;
        tgtFrame?: string;
        tooltip?: string;
    }>