WindowSplitter Xojo Plugin |
|
WindowSplitter.HasNext Method
Use this function to access the internal control vector of the WindowSplitter.

HasNext()
as Boolean
Parameters
Returns
- Boolean
Remarks
This function returns true if there are more items in the Iterator.
Example usage:
Dim ctrl as Control
while WindowSplitter1.HasNext
MsgBox RectControl(WindowSplitter1.GetNext()).Name
wend
(Note the result is typecasted to RectControl, not Control. For some reason REALbasic cannot cast it to Control).
See Also
WindowSplitter Control