This documentation is for the old version. Go to the latest Graphics Mill docs

RectangleVObject Constructor (Single, Single, Single, Single)

Creates and initializes a new rectangle specified by a coordinate pair, a width, and a height.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls.VectorObjects (in Aurigma.GraphicsMill.WinControls.VectorObjects.dll)

Syntax

Visual Basic
Public Sub New ( _
	x As Single, _
	y As Single, _
	width As Single, _
	height As Single _
)
C#
public RectangleVObject(
	float x,
	float y,
	float width,
	float height
)

Parameters

x

Type: System.Single

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

Type: System.Single

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

Type: System.Single

The width of the rectangle to create.
height

Type: System.Single

The height of the rectangle to create.

See Also

Reference