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

XtraReport.RightToLeftLayout Property

Specifies the position of controls within report bands.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

[DefaultValue(RightToLeftLayout.No)]
[PropertyGridTab(ReportStringId.UD_PropertyGrid_TabAppearance)]
[SRCategory(ReportStringId.CatPrinting)]
public RightToLeftLayout RightToLeftLayout { get; set; }

#Property Value

Type Default Description
RightToLeftLayout No

A RightToLeftLayout enumeration value.

Available values:

Name Description
No

The right-to-left feature is disabled.

Yes

The right-to-left feature is enabled.

#Remarks

This property is in effect only when the XtraReport.RightToLeft property is set to RightToLeft.Yes.

Enabling the right-to-left layout will also swap the page margins of a document (it will become impossible to place controls outside the right page margin).

The controls’ coordinates will remain unchanged and only the point and direction of reference will change (the X coordinate will be calculated starting with the top right corner). In a report designer (for WinForms and ASP.NET), this will be reflected in the horizontal ruler direction.

To learn more, see Right-To-Left Support.

See Also