Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.23
LEADTOOLS Vector C++ Class Library Help

LVectorGroup::SetVector

Show in webframe

#include "ltwrappr.h"

L_VOID LVectorGroup::SetVector(pVector)

LVectorBase * pVector;

/* pointer to an LVectorBase object */

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

Parameter

Description

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

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.

See Also

Functions:

LVectorGroup::LVectorGroup, , Class Members

Topics:

Working with Vector Groups

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;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.