61.1 Overview

VSplitter class is a special variant of Group class. It creates a vertical group of two children with a sash between them that allows the user to individually adjust the sizes of the group's two children by dragging the sash.

Note that VSplitter groups must always contain exactly two children. Additionally, the children must also be sizable because VSplitter class allows its children to be resized. Here is an example XML excerpt for creating a vertical splitter layout with two textviews:

 
<vsplitter>
    <textview>One</textview>
    <textview>Two</textview>
</vsplitter>

VSplitter class is available since RapaGUI 2.0.


Show TOC