Bitmap Constructor(Graphics,Int32,Int32)
In This Topic
Intializes a new instance of the Bitmap class with the specified Graphics object and size.
Syntax
'Declaration
Public Function New( _
ByVal As Graphics, _
ByVal As Integer, _
ByVal As Integer _
)
public Bitmap(
Graphics ,
int ,
int
)
Parameters
- graphics
- A Graphics object.
- width
- The width, in pixels, of the new Bitmap object.
- height
- The height, in pixels, of the new Bitmap object.
See Also