public DicomIod Insert(
DicomIod neighbor,
bool child,
DicomClassType code,
string name,
DicomIodType type,
DicomIodUsageType usage,
string description
)
- (nullable LTDicomIod *)insert:(nullable LTDicomIod *)neighbor child:(BOOL)child class:(LTDicomClassType)code name:(NSString *)name type:(LTDicomIodType)type usage:(LTDicomIodUsageType)usage description:(NSString *)desc NS_SWIFT_NAME(insertIod(neighbor:child:class:name:type:usage:description:));
public DicomIod insert(DicomIod neighbor, boolean child, DicomClassType code, String name, DicomIodType type, DicomIodUsageType usage, String description)
public:
DicomIod^ Insert(
DicomIod^ neighbor,
bool child,
DicomClassType code,
String^ name,
DicomIodType type,
DicomIodUsageType usage,
String^ description
)
neighbor
contains an item in the IOD Structure. The inserted item will be inserted as a neighbor to this item, or as a child, depending on the value of child.
child
true to insert the new item as the last child of neighbor, false to insert the new item as the last sibling of neighbor.
code
The class Information Object Definitions.
name
The name of the inserted item
type
The type of Information Object Definition you are working with.
usage
Indicates whether the Information Object is mandatory, conditional or optional, and the type of usage. For more information on mandatory, conditional and optional usage, refer to An Overview of the DICOM File Format or the DICOM Standard.
description
The description of the inserted class Information Object Definition.
DicomIod class containing the newly inserted item.
For an example, refer to Reset.