Provides properties and methods to create a translatable select list to select a single option.
class TranslatableOptionList {
constructor( translate: TranslationService, key: string );
selectedIndex: number;
selectedValue: string;
readonly selectedText: string;
readonly selectedItem: TranslatableOption;
next(): IteratorResult< TranslatableOption >;
[Symbol.iterator](): IterableIterator< TranslatableOption >;
}
Creates a new instance of the select list.
Gets or sets the index of the selected item.
Gets or sets the value of the selected item.
Gets the translated text of the selected item.
Gets the selected item.
Returns the next iterator result.
Returns the iterator of the list.