TableProperties.RightToLeft Property

Definition

Right-to-Left

Represents the following attribute in the schema: rtl

[DocumentFormat.OpenXml.SchemaAttr(0, "rtl")]
public DocumentFormat.OpenXml.BooleanValue RightToLeft { get; set; }
public DocumentFormat.OpenXml.BooleanValue RightToLeft { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "rtl")]
public DocumentFormat.OpenXml.BooleanValue? RightToLeft { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("rtl")]
public DocumentFormat.OpenXml.BooleanValue? RightToLeft { get; set; }
public DocumentFormat.OpenXml.BooleanValue? RightToLeft { get; set; }
member this.RightToLeft : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "rtl")>]
member this.RightToLeft : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("rtl")>]
member this.RightToLeft : DocumentFormat.OpenXml.BooleanValue with get, set
Public Property RightToLeft As BooleanValue

Property Value

Returns BooleanValue.

Attributes

Remarks

The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.

Defines and enables the right-to-left settings of a table. If the value of rtl is on, 1 or true, then the table will be laid out from the right-to-left rather than the default left-to-right.

Consider the following run:

<a:tblPr rtl="1">  
  <a:tableStyleId>{5940675A-B579-460E-94D1-  
  54222C63F5DA}</a:tableStyleId>  
</a:tblPr>  

In this example, we can see that the table is to be created in a right-to-left direction.

The possible values for this attribute are defined by the XML Schema boolean datatype.

Applies to