Searches the node list recursively for a node, according to the path parameter.
Syntax
Parameters
- path
- Path to a data element in the metadata structure.
Return Value
Instanse of
ImGearMetadataNode class object.
Example
System.Enum[] path = new Enum[]
{
ImGearDICOMTagsIDs.DataSet,
ImGearDICOMTagsIDs.DeviceSequence,
ImGearDICOMTagsIDs.Item,
ImGearDICOMTagsIDs.CodeValue
};
ImGearMetadataNode Node = rootNode.Children.LookUp(path);
Dim path(3) As System.Enum
path(0) = ImGearDICOMTagsIDs.DataSet
path(1) = ImGearDICOMTagsIDs.DeviceSequence
path(2) = ImGearDICOMTagsIDs.Item
path(3) = ImGearDICOMTagsIDs.CodeValue
Dim Node As ImGearMetadataNode = rootNode.Children.LookUp(path)
See Also