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

HyperLinkEdit.ShowBrowser(Object) Method

Executes the specified command as a new process.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public virtual void ShowBrowser(
    object linkValue
)

Parameters

Name Type Description
linkValue Object

The object representing the command to execute.

Remarks

The ShowBrowser method lets you execute a command passed as the parameter. The command is retrieved from the linkValue parameter by calling its ToString method.

To execute the command specified by the hyperlink editor, call the ShowBrowser method without parameters. The editor’s command is specified by the HyperLinkEdit.Text property.

Before executing the specified command, the RepositoryItemHyperLinkEdit.OpenLink event is fired. This lets you modify the command or cancel the execution.

See Also