#include "ltwrappr.h"
L_BOOL LBitmapWindow::GetAutoFloaterToRgn()
Returns a value that indicates whether the automatic creation of a bitmap region from a floater is currently enabled or disabled.
TRUE |
The automatic creation of a region from a floater is currently enabled. |
FALSE |
The automatic creation of a region from a floater is currently disabled. |
To enable or disable the automatic creation of a region from a floater, use LBitmapWindow::SetAutoFloaterToRgn.
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. |
Platforms
Win32, x64.
L_INT LBitmapWindow__GetAutoFloaterToRgn(LBitmapWindow &BmpWnd){L_BOOL bOld;bOld = BmpWnd.GetAutoFloaterToRgn();CString strPrev = (bOld) ? TEXT("TRUE") : TEXT("FALSE");AfxMessageBox(TEXT("Previous AutoFloaterToRgn: ") + strPrev);//Enable automatic creation of region from floaterBmpWnd.SetAutoFloaterToRgn(TRUE);//Set floater toolBmpWnd.SetToolType(TOOL_REGION);BmpWnd.SetRegionType(REGION_TYPE_RECT);//...Here you would drag the mouse to create a rectangular floater.//...When the floater is created, the region will also be created.return SUCCESS;}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
