Search
IGraphics.FillRectangle Method (Brush, Double, Double, Double, Double)
See Also
 





Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void FillRectangle (
    Brush brush,
    double x,
    double y,
    double width,
    double height
)

Visual Basic  Copy Code

Sub FillRectangle( _
    brush As Brush, _
    x As Double, _
    y As Double, _
    width As Double, _
    height As Double _
)

 Parameters

brush
A Brush object that determines the characteristics of the fill.
x
The x-coordinate of the upper-left corner of the rectangle to fill.
y
The y-coordinate of the upper-left corner of the rectangle to fill.
width
The width of the rectangle to fill.
height
The height of the rectangle to fill.

 See Also