ChoiceItem interface

interface ChoiceItem {
    Description?: string;
    ExpandedTemplate?: TemplateRef<any>;
    Icon?: {
        Look: string;
        Name: string;
    };
    Name: string;
    Selected?: boolean;
    Title?: string;
    Value: string;
}

Properties

Description?: string

Additional information under each choice, displayed as light gray text

ExpandedTemplate?: TemplateRef<any>

Provide additional template under each choice

Icon?: {
    Look: string;
    Name: string;
}

Icon to display in the label, instead of text

Type declaration

  • Look: string
  • Name: string
Name: string

The name, usually used in the label

Selected?: boolean

Whether the choice is selected

Title?: string

Used for choice tooltip tooltip

Value: string

The value of the choice

Generated using TypeDoc