LAnnStamp::GetBitmap

#include "ltwrappr.h"

virtual L_INT LAnnStamp::GetBitmap(pBitmap)

virtual L_INT LAnnStamp::GetBitmap(pBitmap)

LBitmapBase L_FAR * pBitmap;

/* pointer to an LBitmapBase object */

pBITMAPHANDLE pBitmap;

/* address of the variable to be updated */

Gets the bitmap handle of the annotation object. This function is available in the Document/Medical Toolkits.

Parameter

Description

pBitmap

Pointer to an LBitmapBase object to be updated with the handle to the annotation object's bitmap.

pBitmap

Address of the variable to be updated with the handle to the annotation object's bitmap.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Before calling LAnnStamp::GetBitmap(pBitmap), where pBitmap is of type LBitmapBase L_FAR, you must declare aan LBitmapBase object. Then, pass the address of the object in the pBitmap parameter. This function will update the object with the handle to the annotation object's bitmap.

Before calling LAnnStamp::GetBitmap(pBitmap), where pBitmap is of type pBITMAPHANDLE, you must declare a variable of data type BITMAPHANDLE. Then, pass the address of the variable in the pBitmap parameter. This function will update the variable with the handle to the annotation object's 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:

LAnnStamp::SetBitmap, Class Members

Topics:

Annotation Functions: Object Properties

 

Using Annotation Bitmap Objects

Example

This is an example for LAnnStamp::GetBitmap(pBitmap), where pBitmap is of type pBITMAPHANDLE:

L_VOID TestGetAnnBitmap(LAnnStamp L_FAR * pAnnStamp, pBITMAPHANDLE pBitmap )
{
   if (pAnnStamp && pBitmap)
   {
      pAnnStamp->GetBitmap(pBitmap);
   }   
}

This is an example for LAnnStamp::GetBitmap(pBitmap), where pBitmap is of type LBitmapBase L_FAR:

L_VOID TestGetAnnBitmap(LAnnStamp L_FAR * pAnnStamp, LBitmapBase L_FAR * pLBitmap )
{
   if (pAnnStamp && pLBitmap)
   {
      pAnnStamp->GetBitmap(pLBitmap);
   }   
}