2 overrides of Draw
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
567public override void Draw(
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
488public override void Draw(
8 references to Draw
PresentationCore (3)
Core\CSharp\System\Windows\Media\FormattedText.cs (3)
1629currentLine.Draw(ctx, lineOrigin, InvertAxes.None); 1743currentLine.Draw(dc, lineOrigin, InvertAxes.None); 1805currentLine.Draw(
PresentationFramework (5)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
237_line.Draw(ctx, new Point(delta, 0), ((_lineProperties.FlowDirection == FlowDirection.RightToLeft) ? InvertAxes.Horizontal : InvertAxes.None));
src\Framework\MS\Internal\PtsHost\Line.cs (2)
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 (1)
123line.Draw(ctx, drawLocation, (mirror ? InvertAxes.Horizontal : InvertAxes.None));
src\Framework\MS\Internal\Text\Line.cs (1)
130line.Draw(ctx, new Point(lineOffset.X + delta, lineOffset.Y), (_mirror ? InvertAxes.Horizontal : InvertAxes.None));