#include "Ltdic.h"
L_UINT16 LDicomDS::SetLayerInfo(uLayerIndex, pGraphicLayer)
Sets layer attributes for the layer at the specified index.
Zero-based index of the layer to be updated.
Structure containing the layer attributes.
Value | Meaning |
---|---|
0 | SUCCESS |
>0 | An error occurred. Refer to Return Codes. |
Before calling this function, initialize pGraphicLayer->uStructSize to be sizeof(DICOMGRAPHICLAYER) and initialize all the structure members.
The index(uLayerIndex) is based on the number of items under the "Graphic Layer Sequence" (0070,0060), for example the index of the first item is zero.
Required DLLs and Libraries
Win32, x64
L_INT LDicomDS_SetLayerInfoExample(LDicomDS& PresStateDS)
{
L_INT nRet;
DICOMGRAPHICLAYER Layer;
memset(&Layer, 0, sizeof(DICOMGRAPHICLAYER));
nRet= PresStateDS.GetLayerInfo(0, &Layer, sizeof(DICOMGRAPHICLAYER));
if(nRet == DICOM_SUCCESS)
{
Layer.pszLayerDescription = TEXT("New description");
nRet = PresStateDS.SetLayerInfo(0, &Layer);
if (nRet == DICOM_SUCCESS)
{
MessageBox(NULL,
TEXT("Layer Description updated successfully"),
TEXT("Note"),
MB_OK);
}
}
return DICOM_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