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