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