Skip to main content

ASPxTreeListPrintSettings.RightToLeft Property

Specifies whether or not the tree list supports right-to-left representation when you export tree list data.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean RightToLeft { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

One of the DefaultBoolean enumeration values.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

Library Object Type Path to RightToLeft
ASP.NET MVC Extensions MVCxTreeListSettingsExport
.PrintSettings .RightToLeft
ASP.NET Web Forms Controls ASPxTreeListExporter
.Settings .RightToLeft

Remarks

If the ASPxTreeListPrintSettings.RightToLeft property is set to Default, the tree list’s RTL print setting depends upon the RightToLeft property setting: if it is set to true, the tree list supports right-to-left data representation for the printed data; otherwise, it is disabled.

<dx:ASPxTreeList ID="treeList" runat="server" AutoGenerateColumns="false" Width="100%" RightToLeft="True" ...>
    <SettingsExport RightToLeft="Default" />
    <Columns>
    ...
    </Columns>
</dx:ASPxTreeList>

Concept

Right to Left Support

See Also