C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridBase Class / StartEditing 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.


In This Topic
StartEditing Method (GridBase)
In This Topic
Starts editing a specific cell.
Syntax
'Declaration
 
Public Overridable Function StartEditing( _
   ByVal row As Integer, _
   ByVal col As Integer, _
   Optional ByVal fullEdit As Boolean, _
   Optional ByVal focus As Boolean _
) As Boolean
 
'Usage
 
Dim instance As GridBase
Dim row As Integer
Dim col As Integer
Dim fullEdit As Boolean
Dim focus As Boolean
Dim value As Boolean
 
value = instance.StartEditing(row, col, fullEdit, focus)

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.
See Also