20 references to Right
PresentationCore (2)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
355
case TextAlignment.
Right
:
MS\Internal\TextFormatting\TextMetrics.cs (1)
234
case TextAlignment.
Right
:
PresentationFramework (16)
MS\Internal\Documents\TextBoxLine.cs (2)
530
if (_lineProperties.TextAlignmentInternal == TextAlignment.
Right
)
572
return ((_lineProperties.TextAlignmentInternal == TextAlignment.
Right
|| _lineProperties.TextAlignmentInternal == TextAlignment.Center) && IsWidthAdjusted);
MS\Internal\Documents\TextBoxView.cs (2)
2870
case TextAlignment.
Right
:
2900
textAlignment = TextAlignment.
Right
;
MS\Internal\PtsHost\Line.cs (2)
1118
if ((_textAlignment == TextAlignment.Center || _textAlignment == TextAlignment.
Right
) && !ShowEllipses)
1170
return ((_textAlignment == TextAlignment.
Right
|| _textAlignment == TextAlignment.Center) && IsWidthAdjusted);
MS\Internal\Text\Line.cs (1)
585
return ((_textAlignment == TextAlignment.
Right
|| _textAlignment == TextAlignment.Center) && IsWidthAdjusted);
System\Windows\Controls\TextBlock.cs (1)
3111
case TextAlignment.
Right
:
System\Windows\Controls\TextRangeAdaptor.cs (1)
210
case TextAlignment.
Right
:
System\Windows\Documents\Block.cs (1)
517
|| value == TextAlignment.
Right
;
System\windows\Documents\TextEditorParagraphs.cs (1)
102
TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.
Right
, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (5)
1103
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Left : TextAlignment.
Right
;
1105
else if (textAlignment == TextAlignment.
Right
)
1107
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.
Right
: TextAlignment.Left;
1168
case TextAlignment.
Right
:
1192
textAlignment = TextAlignment.
Right
;
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (1)
338
TextAlignment = TextAlignment.
Right
;
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
119
_editableTextBox.TextAlignment = TextAlignment.
Right
;