#include "Ltdic.h"
pDICOMELEMENT LDicomDS::GetGraphicObjElement(pGraphicAnnSQItem, uObjIndex)
pDICOMELEMENT pGraphicAnnSQItem; |
pointer to a DICOMELEMENT structure |
L_UINT uObjIndex; |
gaphic annotation object index |
Gets the item element of the specified graphic annotation object.
Parameter |
Description |
pGraphicAnnSQItem |
Pointer to a DICOMELEMENT structure |
uObjIndex |
Graphic annotation object index whose item element is to be retrieved. |
!NULL |
SUCCESS |
NULL |
An error occurred. Refer to Return Codes. |
This function returns the item element under the "Graphic Object Sequence" (0070,0009) of the specified graphic annotation object, if the element could not be found it returns NULL.
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 |
Win32, x64
L_INT LDicomDS_GetGraphicObjElementExample(LDicomDS& PresStateDS)
{
pDICOMELEMENT pElement = PresStateDS.GetGraphicObjElement(PresStateDS.FindFirstGraphicAnnSQItem(),0);
if (pElement)
{
MessageBox( NULL,
TEXT("Element item for this layer has been found."),
TEXT("Note"),
MB_OK);
}
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET