Visual Basic
C#
Managed Extensions for C++
C++/CLI
Parameters
- tag
- Tag ID to search for.
Return Value
ImGearMetadataNode class object.If the list contains several nodes with this
tag ID, method returns the first record. If a node is not present, the method returns null.
The method does not search in the subtrees of the node list.
| C# | Copy Code |
|---|---|
ImGearMetadataTree rootTree = (ImGearMetadataTree)page.Metadata.Child; ImGearMetadataNode node = rootTree.Children.LookUp(ImGearBMPTagIDs.BITCOUNT); | |
| Visual Basic | Copy Code |
|---|---|
Dim rootTree As ImGearMetadataTree = igPage.Metadata.Child Dim node As ImGearMetadataNode = rootTree.Children.LookUp(CInt(ImGearBMPTagIDs.BITCOUNT)) | |