Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

OpenLinkEventArgs.EditValue Property

Gets or sets the object representing the command to execute.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public object EditValue { get; set; }

#Property Value

Type Description
Object

The object representing the command to execute.

#Remarks

The EditValue property specifies the command to execute after performing your RepositoryItemHyperLinkEdit.OpenLink event handler.
The command is obtained from EditValue by calling the ToString method. You can use this property to modify the command.

The OpenLinkEventArgs.Handled property allows you to specify whether default execution of the command is required. By setting OpenLinkEventArgs.Handled to true, you can prevent the default processing

See Also