| Parameter | Description |
|---|---|
| hoCol | Returns (by reference) the next focusable column |
| bWrap | Returns (by reference) true if the next column is in the next row |
Returns true if a Next column object can be found.
Function NextColumn Handle ByRef hoCol Boolean ByRef bWrap Returns Boolean
| Call: | Get NextColumn (&hoCol) (&bWrap) to BooleanVariable |
When the user presses the Tab key to move to the next column, the Next message is called. This message determines what that next column should be by calling the SelectedColumn object's NextColumn message. NextColumn must find the appropriate column by taking into account the current column display order, a column's visibility and a column's ability to take the focus during next keyboard navigation. NextColumn performs this task by sending the message CanNavigateIntoColumn to each column in the column display order until it finds a suitable column. It then returns whether a next column exists and, by reference, the next column object and whether the next column is in a new row.
See Also