16 references to Left
PresentationCore (2)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
350
if(pap.Align != TextAlignment.
Left
)
System\Windows\Media\FormattedText.cs (1)
229
TextAlignment.
Left
,
PresentationFramework (14)
MS\Internal\Documents\TextBoxView.cs (4)
389
if (widthChanged && lineProperties.TextAlignment != TextAlignment.
Left
)
448
if (oldWidth != desiredSize.Width && lineProperties.TextAlignment != TextAlignment.
Left
)
2855
textAlignment = TextAlignment.
Left
;
2919
if (textAlignment != TextAlignment.
Left
&&
MS\Internal\Text\LineProperties.cs (1)
40
public override TextAlignment TextAlignment { get { return IgnoreTextAlignment ? TextAlignment.
Left
: _textAlignment; } }
System\Windows\Controls\TextRangeAdaptor.cs (1)
205
case TextAlignment.
Left
:
System\Windows\Documents\Block.cs (2)
214
TextAlignment.
Left
,
515
|| value == TextAlignment.
Left
System\windows\Documents\TextEditorParagraphs.cs (1)
71
TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.
Left
, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (5)
1100
if (textAlignment == TextAlignment.
Left
)
1102
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.
Left
: TextAlignment.Right;
1106
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Right : TextAlignment.
Left
;
1161
case TextAlignment.
Left
:
1185
textAlignment = TextAlignment.
Left
;