Search
IGraphicsPath.AddRoundRect Method
See Also
 





Adds a rounded rectangle to this path.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddRoundRect (
    double x,
    double y,
    double width,
    double height,
    double radius
)

Visual Basic  Copy Code

Sub AddRoundRect( _
    x As Double, _
    y As Double, _
    width As Double, _
    height As Double, _
    radius 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.

radius

The roundness of the rectangle corners.

 See Also