20 references to Right
PresentationCore (2)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
354
case TextAlignment.
Right
:
MS\Internal\TextFormatting\TextMetrics.cs (1)
233
case TextAlignment.
Right
:
PresentationFramework (16)
MS\Internal\Documents\TextBoxLine.cs (2)
529
if (_lineProperties.TextAlignmentInternal == TextAlignment.
Right
)
571
return ((_lineProperties.TextAlignmentInternal == TextAlignment.
Right
|| _lineProperties.TextAlignmentInternal == TextAlignment.Center) && IsWidthAdjusted);
MS\Internal\Documents\TextBoxView.cs (2)
2829
case TextAlignment.
Right
:
2859
textAlignment = TextAlignment.
Right
;
MS\Internal\PtsHost\Line.cs (2)
1105
if ((_textAlignment == TextAlignment.Center || _textAlignment == TextAlignment.
Right
) && !ShowEllipses)
1157
return ((_textAlignment == TextAlignment.
Right
|| _textAlignment == TextAlignment.Center) && IsWidthAdjusted);
MS\Internal\Text\Line.cs (1)
584
return ((_textAlignment == TextAlignment.
Right
|| _textAlignment == TextAlignment.Center) && IsWidthAdjusted);
System\Windows\Controls\TextBlock.cs (1)
3101
case TextAlignment.
Right
:
System\Windows\Controls\TextRangeAdaptor.cs (1)
209
case TextAlignment.
Right
:
System\Windows\Documents\Block.cs (1)
516
|| value == TextAlignment.
Right
;
System\windows\Documents\TextEditorParagraphs.cs (1)
101
TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.
Right
, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (5)
1102
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.Left : TextAlignment.
Right
;
1104
else if (textAlignment == TextAlignment.
Right
)
1106
textAlignment = (flowDirection == FlowDirection.LeftToRight) ? TextAlignment.
Right
: TextAlignment.Left;
1167
case TextAlignment.
Right
:
1191
textAlignment = TextAlignment.
Right
;
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (1)
337
TextAlignment = TextAlignment.
Right
;
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
114
_editableTextBox.TextAlignment = TextAlignment.
Right
;