Method FillRectangle
FillRectangle(Rectangle)
Fills the given rectangle by using the current brush.
public virtual void FillRectangle(Rectangle rect)
Parameters
rectRectangleThe rectangle object to fill.
FillRectangle(int, int, int, int)
Fills the given rectangular area by using the current brush.
public virtual void FillRectangle(int x, int y, int width, int height)
Parameters
xintX-coordinate of the upper-left corner of the rectangle.
yintY-coordinate of the upper-left corner of the rectangle.
widthintWidth of the rectangle.
heightintHeight of the rectangle.
FillRectangle(Color, Rectangle)
Fills the given rectangle by using specified color.
public virtual void FillRectangle(Color color, Rectangle rect)
Parameters
FillRectangle(Color, int, int, int, int)
Fills the given rectangle by using specified color.
public virtual void FillRectangle(Color color, int x, int y, int width, int height)