Skip to main content

RecentHyperlinkItem.ShowBrowser(Object) Method

Executes a custom command as a new process.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void ShowBrowser(
    object linkValue
)

Parameters

Name Type
linkValue Object

Remarks

The ShowBrowser method allows you to execute a specific command by passing it to the linkValue parameter. Before the command is executed, the RecentHyperlinkItem.OpenLink event is fired. Handle this event to modify the command or cancel the execution.

To execute the default hyperlink command (the one specified by the item’s RecentHyperlinkItem.Link property), use the ShowBrowser method overload with no parameters.

See Also