C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / FlexGrid Class / StartEditingAsync Method / StartEditingAsync(GridRow,GridColumn,Boolean,Boolean,Boolean) Method
The row index.
The column index.
Whether to stay in edit mode when the user presses
Whether to set the focus and select the text in the editor.
if set to true disable scrolling animations.

In This Topic
StartEditingAsync(GridRow,GridColumn,Boolean,Boolean,Boolean) Method
In This Topic
Starts the editing of the specified cell asynchronously.
Syntax
'Declaration
 
Public Overloads Function StartEditingAsync( _
   ByVal row As GridRow, _
   ByVal col As GridColumn, _
   Optional ByVal fullEdit As Boolean, _
   Optional ByVal focus As Boolean, _
   Optional ByVal disableAnimation As Boolean _
) As Task(Of Boolean)
 

Parameters

row
The row index.
col
The column index.
fullEdit
Whether to stay in edit mode when the user presses
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.
See Also