LDicomDS::CreateGraphicAnnSQItem

#include "Ltdic.h"

L_UINT16 LDicomDS::CreateGraphicAnnSQItem(nIndex, pszLayerName)

Adds a new item under the "Graphic Annotation Sequence".

Parameters

L_UINT32 nIndex

Index value that indicates where to insert a TAG_ITEM data element in a sequence. The index is zero based, so if you want to insert a TAG_ITEM data element as the first item in the sequence, set this to 0. The value ELEMENT_INDEX_MAX indicates to add the TAG_ITEM data element to the end of the sequence.

L_TCHAR * pszLayerName

Value of the attribute "Graphic Layer " (0070, 0002), under the newly created item.

Returns

Value Meaning
0 SUCCESS
>0 An error occurred. Refer to Return Codes.

Comments

This function will add a new item under the "Graphic Annotation Sequence" (0070,0001) in the "Graphic Annotation Module". If the sequence does not already exist, then this function will create it first and then add the new item.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomDS_CreateGraphicAnnSQItemExample(LDicomDS& PresStateDS)  
{ 
   L_INT nRet; 
 
   nRet = PresStateDS.CreateGraphicAnnSQItem (0,TEXT("New Layer")); 
   if (nRet == DICOM_SUCCESS)  
   { 
     MessageBox( NULL,  
                  TEXT("The Item has been created successfully."),  
                  TEXT("Note"),  
                  MB_OK);  
   } 
 
   return nRet; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.