L_VecGetDisplayOptions

#include "lvkrn.h"

L_LVKRN_API L_INT L_VecGetDisplayOptions(pVector, pOptions)

This function retrieves the current display options for the specified vector handle.

Parameters

pVECTORHANDLE pVector

Pointer to the vector handle.

pVECTOR_DISPLAY_OPTIONS pOptions

Pointer to the VECTOR_DISPLAY_OPTIONS structure to be updated with the display options.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT VecGetDisplayOptionsExample( 
   pVECTORHANDLE pVector, 
   L_INT nNewClipMode) 
{ 
   L_INT nRet; 
   VECTOR_DISPLAY_OPTIONS Options; 
 
   nRet = L_VecGetDisplayOptions ( pVector, &Options ); 
   if( SUCCESS == nRet ) 
   { 
      Options.nClipMode = nNewClipMode; 
      nRet = L_VecSetDisplayOptions ( pVector, &Options ); 
   } 
 
   return nRet; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C API Help