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, Int32, Int32)

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

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

Parameters

original
The TBD from which to create the new TBD.
width
The width, in pixels, of the new Bitmap.
height
The height, in pixels, of the new Bitmap.

See Also

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