Interface UIButtonGroup

UIButtonGroup defines the configuration for a UIElement that displays a collection of interactive buttons.

This element has no associated value in UIElementValues.

interface UIButtonGroup {
    buttons: UIButton[];
    id: string;
    label?: string;
    type: "buttonGroup";
}

Hierarchy

Properties

Properties

buttons: UIButton[]

buttons define the collection of buttons to be displayed.

id: string
label?: string

label defines a label for the button group.

type: "buttonGroup"

Generated using TypeDoc