...
Code Block | ||
---|---|---|
| ||
<subwindow name="..." >
<class > ... </class>
<noscroll />
<activate />
<fastinit />
</subwindow> |
<subwindow name="..." > | |
<class > ... </class> | The name of the window class used to create the window |
<noscroll /> | If defined, the subwindow can't be scrolled; this is useful when the subwindow is used as a dynamically sized control element |
<activate /> | If specified, show the control. By default, the control is hidden. |
<fastinit /> | If specified, instantiate the windowinstance when this control is created. Otherwise, the windowinstance will not be instantiated until control is drawn on screen. |
</subwindow> |
...