C1.WinUI.Grid Assembly / C1.WinUI.Grid Namespace / FlexGrid Class / StartEditing Method / StartEditing(Int32,Int32,Boolean,Boolean,Boolean) Method
The row index.
The column index.
Whether to stay in edit mode when the user presses the cursor keys.
Whether to set the focus and select the text in the editor.
if set to true disable scrolling animations.
In This Topic
StartEditing(Int32,Int32,Boolean,Boolean,Boolean) Method
In This Topic
Starts editing a specific cell.
Syntax
public bool StartEditing( 
   int row,
   int col,
   bool fullEdit,
   bool focus,
   bool disableAnimation
)

Parameters

row
The row index.
col
The column index.
fullEdit
Whether to stay in edit mode when the user presses the cursor keys.
focus
Whether to set the focus and select the text in the editor.
disableAnimation
if set to true disable scrolling animations.

Return Value

true if the editing started and it started synchronously.
Remarks
If the editing couldn't start synchronously this call will return false. Consider using StartEdiringAsync to wait for the result when the row-editing is performed asynchronously in the collection view.
See Also