Skip to main content
All docs
V25.2
  • DxReportDesignerModelSettings.RightToLeft Property

    Gets or sets whether a right-to-left layout is enabled in the Report Designer’s UI.

    Namespace: DevExpress.Blazor.Reporting

    Assembly: DevExpress.Blazor.Reporting.v25.2.JSBasedControls.Common.dll

    NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

    Declaration

    [Parameter]
    public bool RightToLeft { get; set; }

    Property Value

    Type Description
    Boolean

    true to enable the RTL layout; otherwise, false.

    Remarks

    The following code snippet enables a right-to-left layout in the DxWasmReportDesigner component:

    <DxWasmReportDesigner ReportName="Report" Height="100%">
        <DxWasmReportDesignerRequestOptions GetDesignerModelAction="DXXRD/GetReportDesignerModel"/>
        <DxReportDesignerModelSettings RightToLeft="true" />
    </DxWasmReportDesigner>
    

    For the DxReportDesigner component, use the RightToLeft property.

    See Also