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

Bitmap.Clone Method

Creates a full copy of bitmap. All the bitmap data and object properties are copied.

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

Syntax

Visual Basic
Public Overridable Function Clone As Object
C#
public virtual Object Clone()

Return Value

Bitmap object containing full copy of the current object.

Implements

ICloneable.Clone()

Examples

Visual Basic
Dim newBitmap As Aurigma.GraphicsMill.Bitmap = bitmap.Clone
C#
Aurigma.GraphicsMill.Bitmap newBitmap = (Aurigma.GraphicsMill.Bitmap)bitmap.Clone();

See Also

Reference