LDicomDS::SetLayerInfo

#include "Ltdic.h"

L_UINT16 LDicomDS::SetLayerInfo(uLayerIndex, pGraphicLayer)

L_UINT uLayerIndex;

layer index

pDICOMGRAPHICLAYER pGraphicLayer;

pointer to the layer attributes structure

Sets layer attributes for the layer at the specified index.

Parameter

Description

uLayerIndex

Zero-based index of the layer to be updated.

pGraphicLayer

Structure containing the layer attributes.

Returns

0

SUCCESS

>0

An error occurred. Refer to Return Codes.

Comments

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

LTDIC

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64

See Also

Functions:

LDicomDS::GetLayerInfo, LDicomDS::SetLayerInfo, LDicomDS::RemoveLayerByIndex, LDicomDS::RemoveLayerByName, LDicomDS::RemoveAllLayers, LDicomDS::GetLayerCount, LDicomDS::GetLayerIndex, LDicomDS::GetLayerGraphicObjectCount, LDicomDS::RemoveLayerGraphicObjects, LDicomDS::GetLayerTextObjectCount, LDicomDS::RemoveLayerTextObjects, LDicomDS::GetLayerElementByIndex, LDicomDS::GetLayerElementByName, Class Members

Topics:

Working with DICOM Annotations

 

How to Disable the Automatic Loading of the default DICOM IOD Table

Example

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 Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C++ Class Library Help