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

Initializes a new instance of the Bitmap class with the specified size and target Graphics.

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

Parameters

width
The width, in pixels, of the new Bitmap.
height
The height, in pixels, of the new Bitmap.
g
The target TBD for the new Bitmap.

See Also

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