Table of Contents

TDrawingHyperlink.TDrawingHyperlink Constructor

Overloads

TDrawingHyperlink.TDrawingHyperlink

Creates a new hyperlink for a drawing.

Syntax

Namespace: FlexCel.Core

public TDrawingHyperlink()

See also

TDrawingHyperlink.TDrawingHyperlink(String, String, String, String, Boolean, Boolean, Boolean)

Creates a new hyperlink for a drawing.

Syntax

Namespace: FlexCel.Core

public TDrawingHyperlink(String aUrl, String aTargetFrame, String aHint, String aAction, Boolean aHighlightClick, Boolean aAddToHistory, Boolean aEndsSounds)

Parameters

<-> Parameter Type Description
aUrl String Url for the link (including the prefix like "file:///")
aTargetFrame String If blank then a new window will be used.
aHint String Tooltip to show when the user hovers over the hyperlink.
aAction String Specifies an action that is to be taken when this hyperlink is activated. This can be used to specify a slide to be navigated to or a script of code to be run. Doesn't seem to be used in Excel.
aHighlightClick Boolean When set to true, the link will be painted in a "Visited" color.
aAddToHistory Boolean If true, the link will be added to the history.
aEndsSounds Boolean If true, any sound currently playing will be stopped when you click the link.

See also

TDrawingHyperlink.TDrawingHyperlink(String, String, String, String, String, Boolean, Boolean, Boolean)

Creates a new hyperlink for a drawing.

Syntax

Namespace: FlexCel.Core

public TDrawingHyperlink(String aUrl, String aBaseUrl, String aTargetFrame, String aHint, String aAction, Boolean aHighlightClick, Boolean aAddToHistory, Boolean aEndsSounds)

Parameters

<-> Parameter Type Description
aUrl String Url for the link (including the prefix like "file:///")
aBaseUrl String Base Url for the link which will be combined with aUrl.
aTargetFrame String If blank then a new window will be used.
aHint String Tooltip to show when the user hovers over the hyperlink.
aAction String Specifies an action that is to be taken when this hyperlink is activated. This can be used to specify a slide to be navigated to or a script of code to be run. Doesn't seem to be used in Excel.
aHighlightClick Boolean When set to true, the link will be painted in a "Visited" color.
aAddToHistory Boolean If true, the link will be added to the history.
aEndsSounds Boolean If true, any sound currently playing will be stopped when you click the link.

See also