LBitmapWindow::IsToolTypeMagGlass
#include "ltwrappr.h"
L_BOOL LBitmapWindow::IsToolTypeMagGlass(L_VOID)
Determines whether the tool type for the class object's window is currently set to the magnifying glass tool.
Returns
TRUE |
The tool type is set to the magnifying glass tool. |
FALSE |
The tool type is not set to the magnifying glass tool. |
Required DLLs and Libraries
LTDIS 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: |
LBitmapWindow::GetMagGlassOptions, LBitmapWindow::SetMagGlassOptions, LBitmapWindow::SetToolType, Class Members |
Topics: |
|
|
|
|
Example
The following function changes the magnification zoom factor if the tool type is set to the magnifying glass tool.
L_BOOL ChangeMagGlassZoom(LBitmapWindow & BitmapWindow, L_INT nZoom)
{
if (!BitmapWindow.IsToolTypeMagGlass())
return FALSE;
MAGGLASSOPTIONS mgd;
BitmapWindow.GetMagGlassOptions(&mgd, sizeof(MAGGLASSOPTIONS));
mgd.nZoom = nZoom;
BitmapWindow.SetMagGlassOptions(&mgd);
return TRUE;
}