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

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

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

Parameters

width
The width, in pixels, of the new Bitmap.
height
The height, in pixels, of the new Bitmap.
format
The PixelFormat of the new Bitmap.

See Also

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