Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Raster imaging C++ Class library help

LBitmapWindow::IsToolTypeMagGlass

Show in webframe

#include "ltwrappr.h"

L_BOOL LBitmapWindow::IsToolTypeMagGlass()

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
LTDLG
LTEFX
LTFIL
LTIMG
LTSCR
LTTWN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64.

See Also

Functions:

LBitmapWindow::GetMagGlassOptions, LBitmapWindow::SetMagGlassOptions, LBitmapWindow::SetToolType, Class Members

Topics:

Using the Magnifying Glass

 

Raster Image Functions: Displaying Images

 

Using the Zoom View

Example

The following function changes the magnification zoom factor if the tool type is set to the magnifying glass tool.

L_INT LBitmapWindow__IsToolTypeMagGlassExample(LBitmapWindow & BitmapWindow, L_INT nZoom)
{
   L_INT nRet;
   if (!BitmapWindow.IsToolTypeMagGlass())
      return FALSE;
   MAGGLASSOPTIONS mgd;
   nRet =BitmapWindow.GetMagGlassOptions(&mgd, sizeof(MAGGLASSOPTIONS));
   if(nRet !=SUCCESS)
      return nRet;
   mgd.nZoom = nZoom;
   nRet =BitmapWindow.SetMagGlassOptions(&mgd);
   if(nRet !=SUCCESS)
      return nRet;
   
   return SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.