RectanglePath() private method

private RectanglePath ( RectangleF rectangle ) : void
rectangle RectangleF
return void
示例#1
0
 internal virtual void FillRect(Graphics graphics, CGRect rect)
 {
     // Use path by default, because this is how the default implementation works.
     // Some brushes override this to improve performance (SolidBrush, LinearGradientBrush)
     graphics.RectanglePath(rect);
     FillPath(graphics);
 }