LAnnPoint::SetPredefinedBitmap
#include "ltwrappr.h"
static L_INT LAnnPoint::SetPredefinedBitmap(uType, pBitmap)
static L_INT LAnnPoint::SetPredefinedBitmap(uType, pLBitmap)
L_UINT uType; |
/* value that indicates the bitmap to change */ |
pBITMAPHANDLE pBitmap; |
/* pointer to a valid bitmap handle containing an image*/ |
pLBitmapBase *pLBitmap; |
/* pointer to an object to be updated with the bitmap handle */ |
Changes a predefined bitmap. This function is available in the Document/Medical Toolkits.
Parameter |
Description | |
uType |
Value that indicates the bitmap to change. Possible values are: | |
|
Value |
Meaning |
|
ANNBITMAP_POINT |
[0] predefined metafile for annotation point object. |
pBitmap |
Pointer to a valid bitmap handle containing the image to set. | |
pLBitmap |
Pointer to a valid bitmap object containing the image to set. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
This function affects point objects created by the automation object. For example, if you replace the ANNBITMAP_POINT default bitmap handle with another bitmap handle, then objects created in automation mode when the ANNBITMAP_POINT tool is used will look like the new bitmap handle.
A bitmap handle can be reset to its original metafile by passing NULL for pBitmap. For example, to reset the point bitmap handle to the original value, do the following:
LAnnPoint::SetPredefinedBitmap(ANNBITMAP_POINT, (pBITMAPHANDLE)NULL);
Call the LAnnPoint::GetPredefinedBitmap function to retrieve a copy of the predefined bitmap.
Required DLLs and Libraries
LTANN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
LAnnPoint::GetPredefinedBitmap, LAnnPoint::GetTransparentColor |
Topics: |
|
|
|
|
|
|
Example
For an example, refer to LAnnPoint::GetPredefinedBitmap.