|
|
|
|
EditNavigate Method, SftTree Class |
Positions cell editing on another cell.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Public Function EditNavigate( ByVal Direction As EditNavigateEnum ) As Boolean |
C# |
public bool EditNavigate( EditNavigateEnum Direction ); |
C++ |
public: bool EditNavigate( EditNavigateEnum Direction ); |
Direction
The direction.
Value |
Description |
|
1 | The next cell above the current cell. | |
2 | The next cell below the current cell. | |
3 | The cell to the left of the current cell. | |
4 | The cell to the right of the current cell. | |
5 | The first editable cell in the control. | |
6 | The last editable cell in the control. |
Return Value
Returns True if cell editing has been repositioned successfully, otherwise False.
Comments
The EditNavigate method positions cell editing on another cell.
While cell editing is active, this method can be used to implement cell navigation. The cell currently being edited is ended, the EditValidate event occurs and the next cell in the specified direction is edited.