PivotGridControl.ShowEditor() Method
Invokes the focused cell’s editor.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.1.dll
NuGet Package: DevExpress.Win.PivotGrid
Declaration
Remarks
Use the ShowEditor method to switch the PivotGrid to edit mode in code. End-users can do this by clicking a cell. Before the PivotGrid is switched to edit mode, the PivotGridControl.ShowingEditor event is raised, which allows you to cancel the operation.
Calling the ShowEditor method has no effect in the cases listed below:
- no editor is assigned to the data field (the field’s PivotGridField.FieldEdit property returns null);
- field values cannot be edited (the field’s PivotGridFieldOptionsEx.AllowEdit option is disabled).
See Also