[]
Paints a bitmap.
public Bitmap BitmapPaint()
Public Function BitmapPaint() As Bitmap
Type | Description |
---|---|
Bitmap | The image as a bitmap in the specified rectangle |
Paints the specified background image as a bitmap.
public Bitmap BitmapPaint(Picture imgBackground)
Public Function BitmapPaint(imgBackground As Picture) As Bitmap
Type | Name | Description |
---|---|---|
Picture | imgBackground | Background image |
Type | Description |
---|---|
Bitmap | The image as a bitmap in the specified rectangle |
Paints the specified background image as a bitmap with the specified scaling.
public Bitmap BitmapPaint(Picture imgBackground, float zoomFactor)
Public Function BitmapPaint(imgBackground As Picture, zoomFactor As Single) As Bitmap
Type | Name | Description |
---|---|---|
Picture | imgBackground | Background image |
float | zoomFactor | Numeric value for scaling the display of the image |
Type | Description |
---|---|
Bitmap | The image as a bitmap in the specified rectangle |
Paints the specified background image as a bitmap in the specified rectangle.
public Bitmap BitmapPaint(Picture imgBackground, Rectangle r)
Public Function BitmapPaint(imgBackground As Picture, r As Rectangle) As Bitmap
Type | Name | Description |
---|---|---|
Picture | imgBackground | Background image |
Rectangle | r | Boundary rectangle |
Type | Description |
---|---|
Bitmap | The image as a bitmap in the specified rectangle |
Paints the specified background image as a bitmap in the specified rectangle with the specified scaling.
public Bitmap BitmapPaint(Picture imgBackground, Rectangle r, float zoomFactor)
Public Function BitmapPaint(imgBackground As Picture, r As Rectangle, zoomFactor As Single) As Bitmap
Type | Name | Description |
---|---|---|
Picture | imgBackground | Background image |
Rectangle | r | Boundary rectangle |
float | zoomFactor | Numeric value for scaling the display of the image |
Type | Description |
---|---|
Bitmap | The image as a bitmap in the specified rectangle |