Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

OptionsView.RightToLeftMirroringApplied Property

Gets or sets whether the RightToLeft setting has been changed.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(false)]
public bool RightToLeftMirroringApplied { get; set; }

#Property Value

Type Default Description
Boolean false

true if the RightToLeft setting has been changed; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to RightToLeftMirroringApplied
LayoutControl
.OptionsView .RightToLeftMirroringApplied

#Remarks

You can specify the RightToLeft setting for a form or for the LayoutControl.

When the RightToLeft setting is toggled, the LayoutControl horizontally flips the layout of controls and sets the RightToLeftMirroringApplied property to true to indicate that the control mirroring has been done and no further mirroring is required.

If you want to revert to the layout of controls that existed before mirroring was applied, first set the RightToLeftMirroringApplied property to false and then toggle the RightToLeft setting.

See Also