LRasterPaintWindow::GetBitmap

#include "Ltwrappr.h"

LBitmapBase * LRasterPaintWindow::GetBitmap()

Gets the bitmap currently attached to the class object.

Returns

Pointer to the LBitmapBase class object which contains the bitmap.

Required DLLs and Libraries

LTPNT
LTDIS
LTFIL
LTAUT
LTCON
LTTLB

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:

LRasterPaintWindow::SetWndHandle, LRasterPaintWindow::SetBitmap, Class Members

Example

L_VOID SaveBitmap(LRasterPaintWindow* pRasterPntWnd)
{
  LBitmapBase *PLBtmpbase;
  LBitmapBase  *pLBtmpbase = pRasterPntWnd->GetBitmap();
  PLBtmpbase->DialogFile()->DoModalSave();
}