LVectorBase::GetDisplayOptions

Summary

This function retrieves the current display options.

Syntax

#include "ltwrappr.h"

virtual L_INT LVectorBase::GetDisplayOptions(pOptions)

Parameters

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 LVectorBase__GetDisplayOptionsExample(LVectorWindow *pVectorWindow, L_INT nNewClipMode) 
{ 
   L_INT       nRet; 
 
   VECTOR_DISPLAY_OPTIONS  Options;  
 
   pVectorWindow->GetDisplayOptions( &Options );  
 
   Options.nClipMode = nNewClipMode;  
 
   nRet = pVectorWindow->SetDisplayOptions( &Options );  
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 
Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

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