54 references to LeftToRight
PresentationCore (8)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (2)
1496
(RightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
),
1512
(RightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
),
Core\CSharp\MS\Internal\TextFormatting\LineServices.cs (2)
1630
return FlowDirection.
LeftToRight
;
1644
return FlowDirection.
LeftToRight
;
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
896
FlowDirection.
LeftToRight
,
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (2)
1018
bool leftToRight = (flowDirection == FlowDirection.
LeftToRight
);
2732
else if (!stack.Push(modifier.FlowDirection == FlowDirection.
LeftToRight
))
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1216
case FlowDirection.
LeftToRight
:
PresentationFramework (39)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (3)
688
SetMarkerTransform(_leftMarker, start, null, startFlowDirection == FlowDirection.
LeftToRight
? 1 : -1);
689
SetMarkerTransform(_rightMarker, end, start, endFlowDirection == FlowDirection.
LeftToRight
? -1 : 1);
896
flowDirection = (sign > 0 ? FlowDirection.
LeftToRight
: FlowDirection.RightToLeft);
src\Framework\MS\Internal\Documents\DocumentPageHost.cs (1)
101
pageVisualHost.SetValue(FlowDirectionProperty, FlowDirection.
LeftToRight
);
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
188
PtsHelper.UpdateMirroringTransform(FlowDirection, FlowDirection.
LeftToRight
, _pageVisual, safeArrangeSize.Width);
src\Framework\MS\Internal\Documents\PageCache.cs (1)
131
if (flowDirection == FlowDirection.
LeftToRight
)
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (1)
900
PtsHelper.UpdateMirroringTransform(FlowDirection.
LeftToRight
, flowdirection, pageVisual, Size.Width);
src\Framework\MS\Internal\PtsHost\Pts.cs (1)
237
fd = FlowDirection.
LeftToRight
;
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
53
public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, Stream annotationStore) : this(originalPaginator, new XmlStreamStore(annotationStore), FlowDirection.
LeftToRight
)
72
public AnnotationDocumentPaginator(DocumentPaginator originalPaginator, AnnotationStore annotationStore) : this(originalPaginator, annotationStore, FlowDirection.
LeftToRight
)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
935
FlowDirection parentFD = parent == null ? FlowDirection.
LeftToRight
: (FlowDirection)parent.GetValue(FlowDirectionProperty);
src\Framework\System\Windows\Controls\Image.cs (1)
424
style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.
LeftToRight
));
src\Framework\System\Windows\Controls\MediaElement.cs (1)
115
style.Setters.Add (new Setter(FlowDirectionProperty, FlowDirection.
LeftToRight
));
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
805
else if (sb.FlowDirection == FlowDirection.
LeftToRight
)
src\Framework\System\Windows\Controls\TextBlock.cs (1)
2289
FlowDirection flowDirection = FlowDirection.
LeftToRight
;
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
427
case FlowDirection.
LeftToRight
:
src\Framework\System\Windows\Documents\FixedPage.cs (2)
63
FrameworkPropertyMetadata metadata = new FrameworkPropertyMetadata(FlowDirection.
LeftToRight
, FrameworkPropertyMetadataOptions.AffectsParentArrange);
613
return FlowDirection.
LeftToRight
;
src\Framework\System\Windows\Documents\FixedSOMTextRun.cs (1)
250
element.SetValue(FrameworkElement.FlowDirectionProperty, FlowDirection.
LeftToRight
);
src\Framework\System\windows\Documents\TextEditor.cs (1)
516
inputFlowDirection = FlowDirection.
LeftToRight
;
src\Framework\System\windows\Documents\TextEditorCharacters.cs (1)
462
TextEditorCharacters._OnApplyProperty(This, Inline.FlowDirectionProperty, FlowDirection.
LeftToRight
);
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (1)
160
FlowDirection.
LeftToRight
, /*applyToParagraphs*/true);
src\Framework\System\windows\Documents\TextEditorTyping.cs (4)
821
flowDirection == FlowDirection.
LeftToRight
&& margin.Left > 0 ||
1251
((TextSelection)This.Selection).ApplyPropertyValue(FlowDocument.FlowDirectionProperty, FlowDirection.
LeftToRight
, /*applyToParagraphs*/true);
1256
UIElementPropertyUndoUnit.Add(This.TextContainer, This.UiScope, FrameworkElement.FlowDirectionProperty, FlowDirection.
LeftToRight
);
1257
This.UiScope.SetValue(FrameworkElement.FlowDirectionProperty, FlowDirection.
LeftToRight
);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (2)
1107
textAlignment = (flowDirection == FlowDirection.
LeftToRight
) ? TextAlignment.Left : TextAlignment.Right;
1111
textAlignment = (flowDirection == FlowDirection.
LeftToRight
) ? TextAlignment.Right : TextAlignment.Left;
src\Framework\System\windows\Documents\TextSelection.cs (3)
2002
if (renderScopeFlowDirection == FlowDirection.
LeftToRight
)
2004
if (paragraphFlowDirection == FlowDirection.
LeftToRight
&&
2019
if (paragraphFlowDirection == FlowDirection.
LeftToRight
&&
src\Framework\System\Windows\FrameworkElement.cs (7)
3649
System.Windows.FlowDirection.
LeftToRight
, // default value
3693
get { return IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
; }
3723
return value == FlowDirection.
LeftToRight
|| value == FlowDirection.RightToLeft;
3973
FlowDirection parentFlowDirection = FlowDirection.
LeftToRight
; // Assume LTR if no parent is found.
4013
FlowDirection flowDirection = FlowDirection.
LeftToRight
;
4052
return ((parentFD == FlowDirection.
LeftToRight
&& thisFD == FlowDirection.RightToLeft) ||
4053
(parentFD == FlowDirection.RightToLeft && thisFD == FlowDirection.
LeftToRight
));
src\Framework\System\Windows\Window.cs (1)
7157
if ( this.FlowDirection == FlowDirection.
LeftToRight
)
PresentationFramework.Aero (1)
parent\Shared\Microsoft\Windows\Themes\PlatformCulture.cs (1)
37
return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
;
PresentationFramework.Classic (1)
parent\Shared\Microsoft\Windows\Themes\PlatformCulture.cs (1)
37
return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
;
PresentationFramework.Luna (1)
parent\Shared\Microsoft\Windows\Themes\PlatformCulture.cs (1)
37
return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
;
PresentationFramework.Royale (1)
parent\Shared\Microsoft\Windows\Themes\PlatformCulture.cs (1)
37
return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartConnectionPointsAdorner.cs (1)
26
this.FlowDirection = isTextRightToLeft ? FlowDirection.RightToLeft : FlowDirection.
LeftToRight
;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\RTLValueConverter.cs (1)
28
FlowDirection returnValue = FlowDirection.
LeftToRight
;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyInspector.xaml.cs (1)
556
commmonFD = FlowDirection.
LeftToRight
;