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

LineVObject Constructor (Single, Single, Single, Single)

Creates and initializes a new LineVObject object using the provided coordinate pairs.

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

Syntax

Visual Basic
Public Sub New ( _
	x0 As Single, _
	y0 As Single, _
	x1 As Single, _
	y1 As Single _
)
C#
public LineVObject(
	float x0,
	float y0,
	float x1,
	float y1
)

Parameters

x0

Type: System.Single

The x-coordinate of the first point.
y0

Type: System.Single

The y-coordinate of the first point.
x1

Type: System.Single

The x-coordinate of the second point.
y1

Type: System.Single

The y-coordinate of the second point.

See Also

Reference