16 references to Left
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
364if(pap.Align != TextAlignment.Left)
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
253TextAlignment.Left,
PresentationFramework (14)
src\Framework\MS\Internal\Documents\TextBoxView.cs (4)
436if (widthChanged && lineProperties.TextAlignment != TextAlignment.Left) 494if (oldWidth != desiredSize.Width && lineProperties.TextAlignment != TextAlignment.Left) 2876textAlignment = TextAlignment.Left; 2939if (textAlignment != TextAlignment.Left &&
src\Framework\MS\Internal\Text\LineProperties.cs (1)
48public override TextAlignment TextAlignment { get { return IgnoreTextAlignment ? TextAlignment.Left : _textAlignment; } }
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
216case TextAlignment.Left:
src\Framework\System\Windows\Documents\Block.cs (2)
223TextAlignment.Left, 542|| value == TextAlignment.Left
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (1)
90TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Left, /*applyToParagraphs*/true);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (5)
1105if (textAlignment == TextAlignment.Left) 1107textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Left : TextAlignment.Right; 1111textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Right : TextAlignment.Left; 1166case TextAlignment.Left: 1190textAlignment = TextAlignment.Left;