Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 869 Bytes

File metadata and controls

15 lines (13 loc) · 869 Bytes

Layout

Properties

Name Type Description Notes
type TypeEnum Describes layout of a container or widget. Layout describes how individual widgets are placed inside the container. For example, if HORIZONTAL is chosen widgets are placed side by side inside the container. If VERTICAL is chosen then widgets are placed one below the other. If GRID is chosen then the container or widget display area is divided into a grid of m rows and n columns, as specified in the properties, and the widgets are placed inside the grid. [optional]
properties LayoutProperties [optional]

Enum: TypeEnum

Name Value
HORIZONTAL "HORIZONTAL"
VERTICAL "VERTICAL"
GRID "GRID"