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

ImageVObject Constructor

Creates and initializes a new image v-object using the specified Bitmap object.

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

Syntax

Visual Basic
Public Sub New ( _
	image As Bitmap, _
	scaleToActualSize As Boolean, _
	x As Single, _
	y As Single _
)
C#
public ImageVObject(
	Bitmap image,
	bool scaleToActualSize,
	float x,
	float y
)

Parameters

image

Type: Aurigma.GraphicsMill.Bitmap

A Bitmap instance to be displayed.
scaleToActualSize

Type: System.Boolean

A value indicating if the bitmap should be scaled to its actual size taking its DPI into account.
x

Type: System.Single

The x-coordinate of the top-left corner of the image.
y

Type: System.Single

The y-coordinate of the top-left corner of the image.

See Also

Reference