CimTableItem.ID (read-only property)

Gets the string ID of the table item.
Syntax: String = object.ID
Description: The CimTableItem.ID is a string containing the table item ID.

Examples

Dim oTable as CimTable
Dim oItem as CimTableItem
Set oTable = oDb.Tables("MyTable")
For Each oItem in oTable.Items
MsgBox oItem.ID
Next