Skip to main content
A newer version of this page is available. .

OptionsFocus.MoveFocusRightToLeft Property

Gets or sets whether focus moves from right to left.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

[XtraSerializableProperty]
public bool MoveFocusRightToLeft { get; set; }

Property Value

Type Default Description
Boolean **false**

true if focus moves from right to left; false if focus moves from left to right.

Property Paths

You can access this nested property as listed below:

Object Type Path to MoveFocusRightToLeft
DataLayoutControl
.OptionsFocus.MoveFocusRightToLeft
LayoutControl
.OptionsFocus.MoveFocusRightToLeft

Remarks

In Automatic Tab Order mode (when the OptionsFocus.EnableAutoTabOrder property is set to true) pressing the TAB key moves focus consistently between controls according to the values of the MoveFocusRightToLeft and OptionsFocus.MoveFocusDirection properties. If the MoveFocusRightToLeft property is set to false focus moves from left to right. Otherwise, focus moves from right to left.

In addition the MoveFocusRightToLeft property determines the control which is focused first when the Layout Control or any layout group receives focus. If the MoveFocusRightToLeft property is set to false the top-, leftmost control is focused. If this property is set to true the top-, rightmost control is focused.

See the Focus Management topic for more information.

See Also