Skip to main content
All docs
V19.1

DataGridView.OpenEditor(CellIndex) Method

Invokes an in-place editor for the specified cell.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

public void OpenEditor(
    CellIndex cellIndex
)

Parameters

Name Type Description
cellIndex CellIndex

A CellIndex object that specifies a cell position in the grid.

Remarks

Use the DataGridView.EditorShowMode property to allow users to modify grid data in cell in-place editors. This property specifies a gesture that should invoke an in-place editor for a cell.

To open and close a cell in-place editor in code, use the OpenEditor and CloseEditor methods. After a user closes an editor, the DataGridView.EndRowEdit event occurs.

See Also