@bbx-audio/nectar
    Preparing search index...

    Interface IChoiceParameterConfig

    Describes the properties by which a choice or int-based parameter can be configured.

    interface IChoiceParameterConfig {
        choices: string[] | number[];
        defaultValueIndex: number;
        id: string;
        name: string;
        type: Choice;
    }

    Hierarchy

    • IBaseParameterConfig
      • IChoiceParameterConfig
    Index

    Properties

    choices: string[] | number[]

    The available choices for this parameter, which can be either numbers or strings.

    defaultValueIndex: number

    The index of the default value for this parameter.

    id: string

    The identifier associated with this parameter. This MUST be one of the plugin's defined parameter IDs in the C++ backend.

    name: string

    The display name of the parameter as it will appear to the user both in the plugin's user interface and the native Ableton interface.

    type: Choice

    The specific type definition for this parameter.