CurrentIOD property
Builder Syntax |
TDICOMIODItem* CurrentIOD |
Delphi Syntax |
CurrentIOD: TDICOMIODItem |
Overview |
Remarks
Holds the currently selected IOD Structure item.
The TDICOMIODItem class has the following Read-Only properties:
Property |
Type |
Description |
|
Code |
Cardinal |
Code value that specifies the Information Object Definition. The information object may be a Class, a Module or a Tag. For lists of default values, refer to Data Element Tag Constants, IOD Class Constants, and IOD Module Constants. |
|
Description |
String |
Character string that contains a description of the Information Object Definition. |
|
hIOD |
Cardinal |
Memory handle that can be used to uniquely identify an IOD. |
|
Name |
String |
Character string that contains the name of the Information Object Definition. |
|
nType |
Byte |
The type of Information Object Definition you are working with. Possible values are: |
|
|
|
DICOM_IOD_TYPE_CLASS |
[$00] Class type Information Object Definition. |
|
|
DICOM_IOD_TYPE_MODULE |
[$01] Module type Information Object Definition. |
|
|
DICOM_IOD_TYPE_ELEMENT |
[$02] Element type Information Object Definition. |
Usage |
Word |
Value that indicates whether the Information Object is mandatory, conditional or optional, and the type of usage. For a list of possible values, refer to IOD Usage Constants. For more information about mandatory, conditional, and optional IODs, refer to An Overview of Dicom or the DICOM Spec. |
Internally LEADTOOLS maintains a tree structure, referred to as the IOD Structure, of available Information Object Definitions (IODs). These IODs can include default IODs available in DICOM, as well as user defined IODs. You can access any of this information, add to the IOD Structure, or delete items from the IOD Structure using the xxxIOD and xxxIODxx methods.
Note: The CurrentIOD property is read only, except that you can explicitly set it to Nil in Pascal or NULL in C++.
See Also