19 references to InvertAxes
PresentationCore (10)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
570InvertAxes inversion
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
491InvertAxes inversion
Core\CSharp\MS\Internal\TextFormatting\TextFormatterImp.cs (4)
620InvertAxes inversion, 625if (inversion == InvertAxes.None) 636if ((inversion & InvertAxes.Horizontal) != 0) 642if ((inversion & InvertAxes.Vertical) != 0)
Core\CSharp\System\Windows\Media\FormattedText.cs (3)
1629currentLine.Draw(ctx, lineOrigin, InvertAxes.None); 1743currentLine.Draw(dc, lineOrigin, InvertAxes.None); 1808InvertAxes.None
Core\CSharp\System\Windows\Media\TextFormatting\TextLine.cs (1)
64InvertAxes inversion
PresentationFramework (9)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (2)
237_line.Draw(ctx, new Point(delta, 0), ((_lineProperties.FlowDirection == FlowDirection.RightToLeft) ? InvertAxes.Horizontal : InvertAxes.None));
src\Framework\MS\Internal\PtsHost\Line.cs (3)
461line.Draw(ctx, new Point(delta, 0), (_mirror ? InvertAxes.Horizontal : InvertAxes.None)); 691_line.Draw(ctx, new Point(delta, 0), InvertAxes.None);
src\Framework\MS\Internal\PtsHost\ListMarkerLine.cs (2)
123line.Draw(ctx, drawLocation, (mirror ? InvertAxes.Horizontal : InvertAxes.None));
src\Framework\MS\Internal\Text\Line.cs (2)
130line.Draw(ctx, new Point(lineOffset.X + delta, lineOffset.Y), (_mirror ? InvertAxes.Horizontal : InvertAxes.None));