SVerticalBox¶
| Property | Type | Note |
|---|---|---|
| Aka | String | Name for the widget |
| Padding | Number or Number Array (Length = 2 or 4) | |
| Slots | Array | The array which contain children widgets |
| ToolTipText | String | |
| Visibility | Enum: EVisibility: Visible, Collapsed, Hidden, HitTestInvisible, SelfHitTestInvisible, All | |
| AutoHeight | Bool | |
| HAlign | String | Enum:EHorizontalAlignment: Fill, Left, Center, Right. |
| VAlign | String | Enum:EVerticalAlignment: Fill, Top, Center, Bottom. Has no effect when AutoHeight == True |
| ### Examples |
Example 1:
"SVerticalBox":
{
"Slots": [
{
"padding": 2,
"SButton": {
"Text": "Button A"
}
},
{
"padding": 2,
"SButton": {
"Text": "Button B"
}
}
]
}