WindowSplitter Xojo Plugin

DesktopWindowSplitter.AddControlNoResize Method

This method does the same as AddControl, except this method does not let the WindowSplitter manage resize for the control you assign to it. That is it will only move controls around. This variation of the AddControlNoResize is for container controls.

AddControlNoResize(
   container as Window,
   beforeSplitter as Boolean)

Parameters

container
The container control to add to the WindowSplitter's list of managed controls.
beforeSplitter
Set this parameter to true if the container control that you are adding is before the WindowSplitter (To the left of it for vertical splitters or above for horizontal splitters), otherwise set to false. Since controls before the splitter only resize and not move then setting this to true will not let the splitter do anything to the control.

Remarks

Note:
The parameter takes a Window. ContainerControls inherit from a window. The method takes a window to make sure the WindowSplitter does not have dependency on container controls when they are not in use. Do not pass anything but container control instances to the container parameter.

See Also

DesktopWindowSplitter Control