Sets the active layer in the class object's associated vector. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
#include "ltwrappr.h"
virtual L_INT LVectorBase::SetActiveLayer(pVectorLayer);
Pointer to the LVectorLayer object that references the layer to set as the active layer.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Some functions use the active layer when NULL is passed for a pLVectorLayer parameter. This makes it easier to work with the toolkit when layers are not needed.
This example adds a new layer, and makes it the active layer.
L_INT LVectorBase__SetActiveLayerExample(HWND hWnd, LVectorBase *pVector)
{
UNREFERENCED_PARAMETER(hWnd);
L_INT nRet;
VECTORLAYERDESC Desc;
LVectorLayer Layer;
nRet = Layer.GetLayerDesc(&Desc);
if(nRet != SUCCESS)
return nRet;
lstrcpy(Desc.szName, TEXT("Tom's new layer"));
nRet = Layer.SetLayerDesc(&Desc);
if(nRet != SUCCESS)
return nRet;
nRet = pVector-> AddLayer(&Layer);
if(nRet != SUCCESS)
return nRet;
nRet = pVector->SetActiveLayer(&Layer);
if(nRet != SUCCESS)
return nRet;
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