'Declaration
<AsyncStateMachineAttribute(C1.Xamarin.Forms.Grid.FlexGrid/d__341)> Public Function StartEditingAsync( _ ByVal row As Integer, _ ByVal col As Integer, _ Optional ByVal fullEdit As Boolean, _ Optional ByVal focus As Boolean _ ) As Task(Of Boolean)
'Usage
Dim instance As FlexGrid Dim row As Integer Dim col As Integer Dim fullEdit As Boolean Dim focus As Boolean Dim value As Task(Of Boolean) value = instance.StartEditingAsync(row, col, fullEdit, focus)
[AsyncStateMachine(C1.Xamarin.Forms.Grid.FlexGrid/d__341)] public Task<bool> StartEditingAsync( int row, int col, bool fullEdit, bool focus )
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.
Return Value
true
if the editing started.