Lines Matching refs:selected
41 …ustombuilder8) | No| Custom component to indicate that the check box is selected. This custom comp…
51 Sets whether the check box is selected.
65 | value | boolean | Yes | Whether the check box is selected.<br>Default value: **false**|
71 Sets the color of the check box when it is selected.
83 …](ts-types.md#resourcecolor) | Yes | Color of the check box when it is selected.<br>Default value…
89 Sets the border color of the check box when it is not selected.
99 …md#resourcecolor) | Yes | Border color of the check box when it is not selected.<br>Default value…
159 Invoked when the selected state of the check box changes.
171 …xChangeCallback](#oncheckboxchangecallback13) | Yes | Callback used to return the selected state.|
177 Represents the callback invoked when the selected state of the check box changes.
189 …| boolean | Yes | Whether the check box is selected. The value **true** means that the check box …
213 | selected | boolean| No| No| Whether the check box is selected.<br>If the **select** attribute is …
214 | triggerChange |Callback\<boolean>| No| No|Changes the selected state of the check box.|
300 …stom check box. This check box comes in the custom pentagon style. When selected, the check box sh…
317 …Text(config.name + (config.selected ? " (Selected)" : " (Unselected)")).margin({right : 70, top :…
321 if (config.selected) {
328 .visibility(config.selected ? Visibility.Visible : Visibility.Hidden)
329 … .fill(config.selected ? (config.contentModifier as MyCheckboxStyle).selectedColor : Color.Black)
373 In this example, a **Text** component is used to indicate that the check box is selected.