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