Open Pioneer Trails Packages
    Preparing search index...

    Represents a single option in a selection field (combo box, select, or radio group).

    interface Option<T> {
        label: string;
        value: T;
    }

    Type Parameters

    • T

      The type of the option value (string or number)

    Index

    Properties

    Properties

    label: string

    The display text shown to the user.

    value: T

    The underlying value stored in the feature property when this option is selected.