#include "ltdic.h"
L_UINT16 LDicomAssociate::GetVersion(L_VOID)
Returns the version of the DICOM Associate.
The version of the DICOM Associate.
The default value is 1.
Required DLLs and Libraries
Win32, x64
L_INT LDicomAssociate_GetVersionExample(LDicomAssociate *m_pDicomAssociate)
{
CString strMsg;
//create the Associate Class as Request
m_pDicomAssociate = new LDicomAssociate(TRUE);
//set the Associate to the default
m_pDicomAssociate->Default();
//check the Associate Class version
L_UINT16 uVersion = m_pDicomAssociate->GetVersion();
strMsg.Format(TEXT("Version[%d]"), uVersion);
AfxMessageBox(strMsg);
//set the version
m_pDicomAssociate->SetVersion(99);
uVersion = m_pDicomAssociate->GetVersion();
strMsg.Format(TEXT("Version[%d]"), uVersion);
AfxMessageBox(strMsg);
//Free associate
delete m_pDicomAssociate;
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