Run.FlowDirection Property

Definition

Gets or sets the direction that text and other user interface elements flow within the Run element that controls their layout.

public:
 property FlowDirection FlowDirection { FlowDirection get(); void set(FlowDirection value); };
FlowDirection FlowDirection();

void FlowDirection(FlowDirection value);
public FlowDirection FlowDirection { get; set; }
var flowDirection = run.flowDirection;
run.flowDirection = flowDirection;
Public Property FlowDirection As FlowDirection
<Run FlowDirection="LeftToRight"/>
-or-
<Run FlowDirection="RightToLeft"/>

Property Value

The direction that text and other user interface (UI) elements flow within the Run element. The default value is LeftToRight.

Applies to