Lines Matching refs:selected

36 | selected   | number              | Yes   | Index of the initially selected item. If the value exc…
68 Sets the font color of the selected item.
78 | value | [ResourceColor](ts-types.md#resourcecolor) | Yes | Font color of the selected item.<br>…
100 Sets the background color of the selected item.
110 | value | [ResourceColor](ts-types.md#resourcecolor) | Yes | Background color of the selected ite…
148 Sets the font style of the selected item.
158 | value | [Font](ts-types.md#font) | Yes | Font style of the selected item.<br>Default value:<br>…
225 ### selected<sup>8+</sup>
227 selected(index: number)
229 Sets the index of the selected item.
241 | index | number | Yes | Index of the selected item.<br>Default value: **0**|
263 Sets the color of the selected text in the non-alphabetic part in the pop-up window.
273 | value | [ResourceColor](ts-types.md#resourcecolor) | Yes | Color of the selected text in the no…
438 …ed when an item in the alphabetic indexer bar is selected. The return value is the index of the se…
448 | index | number | Yes | Index of the selected item.|
454 …ed when an item in the alphabetic indexer bar is selected. The return value is the index of the se…
464 …electcallback14) | Yes | Callback invoked when an item in the alphabetic indexer bar is selected.|
470 …content in the index pop-up window is sent after an item in the alphabetic indexer bar is selected.
480 …ontent in the index pop-up window is sent after an item in the alphabetic indexer bar is selected.|
486 Invoked when an item in the index pop-up window is selected.
496 …ndexerpopupselectcallback14) | Yes | Invoked when an item in the index pop-up window is selected.|
510 | index | number | Yes | Index of the selected item.|
524 | index | number | Yes | Index of the selected item.|
538 | index | number | Yes | Index of the selected item.|
543 | Array\<string\> | String array corresponding to the selected index. The string array is displayed…
609 AlphabetIndexer({ arrayValue: this.value, selected: 0 })
611 .selectedColor(0xFFFFFF) // Font color of the selected text.
613 .selectedBackgroundColor(0xCCCCCC) // Background color of the selected item.
616 .selectedFont({size: 16, weight: FontWeight.Bolder}) // Font style of the selected text.
633 … When index A is selected, the pop-up window displays arrayA corresponding to index A. The same ap…
641 … return [] // When no array is available for the selected index, the pop-up window is empty.
723 AlphabetIndexer({ arrayValue: this.value, selected: 0 })
726 .selectedColor(0xFFFFFF)// Font color of the selected item.
728 .selectedBackgroundColor(0xCCCCCC)// Background color of the selected item.
731 … .selectedFont({size: 16, weight: FontWeight.Bolder})// Font style of the selected item.
877 AlphabetIndexer({ arrayValue: this.value, selected: 0 })
889 … When index A is selected, the pop-up window displays arrayA corresponding to index A. The same ap…
897 … return [] // When no array is available for the selected index, the pop-up window is empty.