[C#]
void FillRectangle(Brush brush, double x, double y, double width, double height);
void FillRectangle(Brush brush, RectangleF rect);
[Visual Basic]
Sub FillRectangle(brush As Brush, x As Double, y As Double, width As Double, height As Double)
Sub FillRectangle(brush As Brush, rect As RectangleF)
|