NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Bitmap Constructor (Image, Size)

Initializes a new instance of the Bitmap class, from the specified existing image, with the specified size.

[Visual Basic]
Overloads Public Sub New( _
   ByVal original As Image, _
   ByVal newSize As Size _
)
[C#]
public Bitmap(
   Image original,
   Size newSize
);
[C++]
public: Bitmap(
   Image* original,
   Size newSize
);
[JScript]
public function Bitmap(
   original : Image,
   newSize : Size
);

Parameters

original
The TBD from which to create the new Bitmap.
newSize
The TBD of the new Bitmap.

See Also

Bitmap Class | Bitmap Members | System.Drawing Namespace | Bitmap Constructor Overload List