ClearImage .NET API
Bitmap Property





Inlite.ClearImageNet Namespace > ImageEditor Class : Bitmap Property
Sets Bitmap for editing. Gets results of editing
Syntax
'Declaration
 
Public Property Bitmap As System.Drawing.Bitmap
'Usage
 
Dim instance As ImageEditor
Dim value As System.Drawing.Bitmap
 
instance.Bitmap = value
 
value = instance.Bitmap
public System.Drawing.Bitmap Bitmap {get; set;}
public read-write property Bitmap: System.Drawing.Bitmap; 
public function get,set Bitmap : System.Drawing.Bitmap
public:
property System.Drawing.Bitmap^ Bitmap {
   System.Drawing.Bitmap^ get();
   void set (    System.Drawing.Bitmap^ value);
}
Remarks

Bitmap property obtains System.Drawing.Bitmap object from an internal representation of the image.

To avoid memory leaks, when done with Bitmap object, dispose of it with Bitmap.Dispose method or use using statement.

See Also

Reference

ImageEditor Class
ImageEditor Members