@companion-surface/base
    Preparing search index...

    Interface SurfaceSchemaControlDefinition

    Single control definition. The id must be unique and may be user facing in logs. Typically the id would be in the form of 1/0, matching the row/column of the control.

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty "^[a-zA-Z0-9-/]+$".

    interface SurfaceSchemaControlDefinition {
        column: number;
        row: number;
        stylePreset?: string;
    }
    Index

    Properties

    column: number

    Zero-based column index for layout placement.

    row: number

    Zero-based row index for layout placement.

    stylePreset?: string

    Optional name of a style preset defined in stylePresets. If present, the control will use the named preset instead of the default style.