LVectorBase::Empty

#include "ltwrappr.h"

virtual L_INT LVectorBase::Empty(L_VOID)

Deletes all layers and objects from the class object's associated vector.

This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Calling this function will not affect other settings such as camera, transformation, etc.

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:

LVectorBase::IsEmpty, LVectorBase::Copy, LVectorFile::LoadFile, LVectorBase::AddLayer, LVectorBase::AddObject

Topics:

Working with Vector Handles

Example

//This example removes all layers and objects
L_VOID Example61()
{
   LVectorBase Vector;
   Vector.Load(TEXT("test.dxf"));
   L_BOOL bEmpty;
   L_TCHAR *pszMsg;
   
   Vector.IsEmpty(&bEmpty);
   pszMsg = bEmpty? TEXT("Vector is Empty"): TEXT("Vector has layers/objects");
   MessageBox(NULL, pszMsg, NULL, MB_OK);
   
   Vector.Empty();
   Vector.IsEmpty(&bEmpty);
   pszMsg = bEmpty? TEXT("Vector is Empty"): TEXT("Vector has layers/objects");
   MessageBox(NULL, pszMsg, NULL, MB_OK);
}