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

RichEditCommands.insertHyperlink Property

Gets a command to insert and update a hyperlink field in place of a selected range.

Declaration

readonly insertHyperlink: InsertHyperlinkCommand

Property Value

Type Description
InsertHyperlinkCommand

An object that provides methods that execute the command and check its state.

Remarks

Call the execute(settings) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.

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

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