Skip to main content
A newer version of this page is available. .

HyperlinkSettings Class

Contains settings to define a hyperlink.

Declaration

declare class HyperlinkSettings

Remarks

Use an obect of the HyperlinkSettings type to provide a hyperlink’s settings when performing the insertHyperlink or changeHyperlink command.

var hyperlinkSettings = {
    url: 'https://www.devexpress.com/',
    text: 'Link',
    tooltip: 'Click to redirect'
};

richEdit.commands.insertHyperlink.execute(hyperlinkSettings);
See Also