DataGridView.CloseEditor(Boolean) Method
In This Article
Closes a cell in-place editor.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
#Declaration
C#
public bool CloseEditor(
bool applyChanges
)
#Parameters
Name | Type | Description |
---|---|---|
apply |
Boolean | true, to apply a cell value modified in an in-place editor; otherwise, false. |
#Returns
Type |
---|
Boolean |
#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.
See Also