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

ShowingEditorEventArgs Class

Provides data for the GridViewBase.ShowingEditor event.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public class ShowingEditorEventArgs :
    ShowingEditorEventArgsBase

Remarks

Refer to the Assign Editors to Cells topic for more information.

Example

This example shows how to prevent end-users from editing values of individual cells. In this example, end-users are not allowed to change a product’s Price, if the product is discontinued.

private void view_ShowingEditor(object sender, ShowingEditorEventArgs e) {
    if (e.Column.FieldName != "UnitPrice") return;
    e.Cancel = (bool)grid.GetCellValue(e.RowHandle, "Discontinued");
}
See Also