Search
IGraphicsPath.AddRectangle Method (Double, Double, Double, Double)
See Also
 





Adds a rectangle to this path.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddRectangle (
    double x,
    double y,
    double width,
    double height
)

Visual Basic  Copy Code

Sub AddRectangle( _
    x As Double, _
    y As Double, _
    width As Double, _
    height As Double _
)

 Parameters

x

The x-coordinate of the upper-left corner of the rectangle to add.

y

The y-coordinate of the upper-left corner of the rectangle to add.

width

The width of the rectangle to add.

height

The height of the rectangle to add.

 See Also