#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.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Calling this function will not affect other settings such as camera, transformation, etc.
Required DLLs and Libraries
This example removes all layers and objects.
L_INT LVectorBase__EmptyExample()
{
L_INT nRet;
LVectorBase Vector;
L_BOOL bEmpty;
L_TCHAR* pszMsg;
nRet = Vector.Load(MAKE_IMAGE_PATH(TEXT("random.dxf")));
if(nRet != SUCCESS)
return nRet;
nRet = Vector.IsEmpty(&bEmpty);
if(nRet != SUCCESS)
return nRet;
pszMsg = bEmpty? TEXT("Vector is Empty"): TEXT("Vector has layers/objects");
MessageBox(NULL, pszMsg, NULL, MB_OK);
nRet = Vector.Empty();
if(nRet != SUCCESS)
return nRet;
nRet = Vector.IsEmpty(&bEmpty);
if(nRet != SUCCESS)
return nRet;
pszMsg = bEmpty? TEXT("Vector is Empty"): TEXT("Vector has layers/objects");
MessageBox(NULL, pszMsg, NULL, MB_OK);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document