Search:
|
Browse by category:
|
| | | |
|
Problem
How can I programmatically deactivate the current cell in the grid?
Cause
Action
If you wish for any pending changes in the edited cell to be stored, call TransferCurrentCell() with an argument of TRUE. Note that the value of the argument defaults to TRUE if not specified.
// Deactivate current cell and store changes TransferCurrentCell(); |
If you want to deactivate the current cell but you do not wish to save any pending changes, supply FALSE as the argument:
// Deactivate current cell, do NOT store changes TransferCurrentCell(FALSE); |
Prev | Next | |
Objective Grid: Changing grid margins | Objective Grid: Changing the outline frame for the current cell |