L_VecIsObjectHidden

#include "ltvkrn.h"

L_LVKRN_API L_BOOL L_VecIsObjectHidden(pVector, pObject)

Returns a value that indicates whether or not the specified object is hidden.

Parameters

const pVECTORHANDLE pVector

Pointer to a vector handle.

const pVECTOROBJECT pObject

Pointer to a vector object.

Returns

Value Meaning
TRUE The specified object is hidden.
FALSE The specified object is not hidden.

Comments

If pObject is NULL and any object inside the vector handle is currently hidden, this function will return TRUE.

Required DLLs and Libraries

See Also

Functions

Example

This example will determine whether the given object is hidden or not.

L_LTVKRNTEX_API L_INT VecIsObjectHiddenExample( 
   pVECTORHANDLE pVector, 
   pVECTOROBJECT pObject) 
{ 
   if( L_VecIsObjectHidden( pVector, pObject ) ) 
      MessageBox( NULL, TEXT("Object is hidden"), TEXT("Test"), MB_OK ); 
   else 
      MessageBox( NULL, TEXT("Object is visible"), TEXT("Test"), MB_OK ); 
 
   return SUCCESS; 
}  

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.