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