logic-pro-types
    Preparing search index...

    Type Alias Parameter

    type Parameter = {
        defaultValue?: number;
        maxValue?: number;
        minValue?: number;
        name: string;
        numberOfSteps?: number;
        text?: string;
        unit?: "ms";
    }
    Index
    defaultValue?: number

    Type an integer or floating point number to set a default value. If no value is typed, the default is 0.0.

    maxValue?: number

    Type an integer or floating point number to set a maximum value. If no value is typed, the default is 1.0.

    minValue?: number

    Type an integer or floating point number to set a minimum value. If no value is typed, the default is 0.0.

    name: string
    numberOfSteps?: number

    Type an integer number to define the number of steps.

    text?: string

    Type text to create a divider or header in the plug-in UI.

    unit?: "ms"

    Type a string to present a unit description in the plug-in controls. If no value is typed, the default behavior is to display no unit.