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

GetNext()
as Object
Parameters
Returns
- Object
Remarks
This function returns the next in the Iterator.
Example usage:
Dim ctrl as Control
while WindowSplitter1.HasNext
MsgBox RectControl(WindowSplitter1.GetNext()).Name
wend
(Note the result is type casted to RectControl, not Control. For some reason REALbasic cannot cast it to Control).
See Also
WindowSplitter Control