Represent a group in the form that holds controls in it.

interface Group {
    contribution?: WitContribution;
    controls?: Control[];
    height?: number;
    id?: string;
    inherited?: boolean;
    isContribution?: boolean;
    label?: string;
    order?: number;
    overridden?: boolean;
    visible?: boolean;
}

Properties

contribution?: WitContribution

Contribution for the group.

controls?: Control[]

Controls to be put in the group.

height?: number

The height for the contribution.

id?: string

The id for the layout node.

inherited?: boolean

A value indicating whether this layout node has been inherited from a parent layout. This is expected to only be only set by the combiner.

isContribution?: boolean

A value indicating if the layout node is contribution are not.

label?: string

Label for the group.

order?: number

Order in which the group should appear in the section.

overridden?: boolean

A value indicating whether this layout node has been overridden by a child layout.

visible?: boolean

A value indicating if the group should be hidden or not.