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.v18.2.dll

Declaration

public class ShowingEditorEventArgs :
    ShowingEditorEventArgsBase

Remarks

To learn more, see In-place Editors.

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