16 references to Left
PresentationCore (2)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
351
if(pap.Align != TextAlignment.
Left
)
System\Windows\Media\FormattedText.cs (1)
233
TextAlignment.
Left
,
PresentationFramework (14)
MS\Internal\Documents\TextBoxView.cs (4)
432
if (widthChanged && lineProperties.TextAlignment != TextAlignment.
Left
)
491
if (oldWidth != desiredSize.Width && lineProperties.TextAlignment != TextAlignment.
Left
)
2896
textAlignment = TextAlignment.
Left
;
2960
if (textAlignment != TextAlignment.
Left
&&
MS\Internal\Text\LineProperties.cs (1)
41
public override TextAlignment TextAlignment { get { return IgnoreTextAlignment ? TextAlignment.
Left
: _textAlignment; } }
System\Windows\Controls\TextRangeAdaptor.cs (1)
206
case TextAlignment.
Left
:
System\Windows\Documents\Block.cs (2)
215
TextAlignment.
Left
,
516
|| value == TextAlignment.
Left
System\windows\Documents\TextEditorParagraphs.cs (1)
72
TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.
Left
, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (5)
1101
if (textAlignment == TextAlignment.
Left
)
1103
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.
Left
: TextAlignment.Right;
1107
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Right : TextAlignment.
Left
;
1162
case TextAlignment.
Left
:
1186
textAlignment = TextAlignment.
Left
;