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

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.v18.2.dll

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
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Object Type Path to RightToLeft
ASPxTreeList
.SettingsExport.RightToLeft
ASPxTreeListExporter
.Settings.RightToLeft
MVCxTreeList
.SettingsExport.RightToLeft
MVCxTreeListExporter
.Settings.RightToLeft
MVCxTreeListSettingsExport
.PrintSettings.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