Retrieve a table item by name. | |
Syntax: | Set CimTableItem = object.Item ( itemID ) |
Parameters: |
itemID As
String - The name of the itemID
to retrieve from the table items collection.
|
Description: | The CimTableItems.Item returns a
CimTableItem corresponding to the itemID specified. Examples Dim oTable as CimTable Dim oItem as CimTableItem Set oTable = oDb.Tables("MyTable") For Each oItem in oTable.Items MsgBox oItem.ID Next |