Panel: column

Syntax

column {
    <sub_panel>
    ...
}

Description

Column constraint. No panel is created. Child sub-panels within it are automatically stacked vertically.

Membership

Parameters

None

Switches

Callbacks

None

Notes

No sub-panels are created by the column statement. It is merely a device for controlling the vertical layout of other sub-panels.

Examples

Create a panel window containing an alpha subwindow and column with label and slider illustrating the -full feature.

window w = wpanel {
    row {
        a: walpha -r=40
        column -full {
            label 'File Size'
            s: slider 40,0,0,-v,-eb
        }
    }
}

Create a panel window to illustrate the equal spacing of sub-panels and justification.

window w = wpanel {
    row {
        list -r=10
        column -eq,-full {
            c1: check_button 'Text File',-j=’L’
            c2: check_button 'Network File',-j=’L’
            c3: check_button 'Read-only',-j=’L’
        }
    }
}