textalive-app-api - v0.5.2
    Preparing search index...

    Interface ParameterWidget

    リリックアプリ、スタイル、テンプレートで調整可能なパラメタ

    Parameters that can be customized in lyric apps, styles, and templates

    interface ParameterWidget {
        className?: string;
        initialValue?: ParameterValue;
        name: string;
        params?: (
            | string
            | number
            | boolean
            | [string | number | boolean, string?]
            | { [value: string]: string }
        )[];
        title?: string | RegionalText;
    }
    Index
    className?: string

    パラメタの種類(例: Slider

    Type of this variable (e.g. Slider)

    initialValue?: ParameterValue

    パラメタの初期値

    Initial value for this parameter variable

    name: string

    パラメタの名前

    Name of this parameter variable

    params?: (
        | string
        | number
        | boolean
        | [string | number | boolean, string?]
        | { [value: string]: string }
    )[]

    パラメタのオプション(例: ParameterWidget.classNameSlider のとき [0, 100] で値域 0 から 100 のスライダーウィジェットが出現)

    Options for constructing a parameter widget parsed from description e.g. [0, 100]

    title?: string | RegionalText

    ユーザに提示するパラメタの名前

    Human-readable representation of this varible