CADability dotNET
Draws a rectangular bitmap at the provided location with directionWidth specifying the direction of the lower edge of the bitmap and directionHeight specifying the direction of the left edge of the bitmap. PrepareBitmap(Bitmap, Int32, Int32) must be called before this method is called.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
void RectangularBitmap(
	Bitmap bitmap,
	GeoPoint location,
	GeoVector directionWidth,
	GeoVector directionHeight
)
Visual Basic
Sub RectangularBitmap ( _
	bitmap As Bitmap, _
	location As GeoPoint, _
	directionWidth As GeoVector, _
	directionHeight As GeoVector _
)
Visual C++
void RectangularBitmap(
	Bitmap^ bitmap, 
	GeoPoint location, 
	GeoVector directionWidth, 
	GeoVector directionHeight
)

Parameters

bitmap
Type: System.Drawing..::..Bitmap
The bitmap to draw
location
Type: CADability..::..GeoPoint
Location of the lower left corner of the bitmap
directionWidth
Type: CADability..::..GeoVector
Direction of the lower edge of the bitmap
directionHeight
Type: CADability..::..GeoVector
Direction of the left edge of the bitmap

See Also