#include "ltwrappr.h"
L_INT LVectorObject::HideObject(bHide=TRUE)
L_BOOL bHide; |
flag that indicates whether to hide or show an object |
Hides or shows an object. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
Parameter | Description | |
bHide | Flag that indicates whether to hide or show the class object. Possible values are: | |
Value | Meaning | |
TRUE | Hide the class object. | |
FALSE | Show the class object. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Hides or shows a class object.
Please note that you will have to update the window to see the results of this function.
Required DLLs and Libraries
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Functions: |
|
Topics: |
|
|
This example will toggle the hide property of the given object.
L_INT LVectorObject__HideObjectExample(HWND hWnd, LVectorBase *pVector, LVectorObject *pObject )
{
UNREFERENCED_PARAMETER(hWnd);
UNREFERENCED_PARAMETER(pVector);
L_INT nRet;
L_BOOL bHidden;
nRet = pObject->IsObjectHidden( &bHidden );
if(nRet != SUCCESS)
return nRet;
nRet = pObject->HideObject( !bHidden );
if(nRet != SUCCESS)
return nRet;
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