Difference between revisions of "DesktopComboBox.AllowFocusRing"
From Xojo Documentation
(Created page with "N/A") |
|||
Line 1: | Line 1: | ||
− | + | {{PropertyBox | |
+ | | name=AllowFocusRing | ||
+ | | owner=[[DesktopComboBox]] | ||
+ | | ownertype=class | ||
+ | | scope=public | ||
+ | | type=[[Boolean]] | ||
+ | | platform=all | ||
+ | | newinversion=2021r3 | ||
+ | }} | ||
+ | {{Description | ||
+ | |text = If [[True]], the control indicates that it has the focus with a ring around its border; if [[False]], the appearance of the control does not change when it has the focus. At present, the focus ring appears only on macOS and Linux. On all platforms, the combobox gets a text insertion point when it has the focus. The default is [[True]]. }} | ||
+ | |||
+ | == Sample Code == | ||
+ | The following code turns off '''AllowFocusRing'''. | ||
+ | <rbcode> | ||
+ | ComboBox1.AllowFocusRing = False | ||
+ | </rbcode> | ||
+ | |||
+ | [[Category:API 2.0]] |
Latest revision as of 18:38, 23 July 2021
Property (As Boolean )
aDesktopComboBox.AllowFocusRing = newBooleanValue
or
BooleanValue = aDesktopComboBox.AllowFocusRing
New in 2021r3
Supported for all project types and targets.
or
BooleanValue = aDesktopComboBox.AllowFocusRing
New in 2021r3
Supported for all project types and targets.
If True, the control indicates that it has the focus with a ring around its border; if False, the appearance of the control does not change when it has the focus. At present, the focus ring appears only on macOS and Linux. On all platforms, the combobox gets a text insertion point when it has the focus. The default is True.
Sample Code
The following code turns off AllowFocusRing.
ComboBox1.AllowFocusRing = False