LVectorGroup::SetVector

Summary

Sets an LVectorBase object, or any object derived from LVectorBase, to be used by the Vector Group functions.

Syntax

#include "ltwrappr.h"

L_VOID LVectorGroup::SetVector(pVector)

Parameters

LVectorBase * pVector

Pointer to the LVectorBase object to be used by the Vector Groups functions.

Returns

None.

Comments

This function is mainly used internally. Functions that use an LVectorGroup object automatically set the vector.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LVectorGroup__SetVectorExample(HWND hWnd, LVectorBase *pVector) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
 
   LVectorGroup   VectorGroup; 
 
   //Associate the LVectorGroup with an LVectorBase 
   //Note that most functions that use an LVectorGroup do this automatically 
   VectorGroup.SetVector(pVector); 
 
   //...Do something with the vector group 
 
   //...LVectorGroup destructor called when VectorGroup goes out of scope 
 
   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.