Gets or sets a value specifying whether the writung direction is left-to-right at the current input position. If text is selected, the property specifies this attribute for the whole selected text.

Introduced: X10.

Syntax

public bool? LeftToRight { get; set; }
Public Property LeftToRight() As Nullable(Of Boolean)

Examples

The following XAML example binds the LeftToRight property to a ToggleButton:

<ToggleButton 
    Height="29"
    Name="buttonLeftToRight"
    IsChecked="{Binding ElementName=textControl1, Path=InputFormat.LeftToRight, Mode=TwoWay}">
    Left to Right</ToggleButton>

Remarks

The property returns null, if the text selection contains multiple paragraphs with mixed setting.