Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Plant SCADA

IObjectViewItems​.Count [Property][Get]

  • Last UpdatedJul 18, 2023
  • 1 minute read

Gets the number of child items under this item.

Defined As

  • [VBA] Long Count

  • [Cicode] INT Count

  • [C++] int Count

Execution Result

If the property get succeeds, the return value will be Success. If the return variable is bad, the return value will be InvalidArgument.

Calling Syntax

This example assumes there is a valid Items collection as retrieved from an ObjectView. (for example, VBA: objectView.Items)

[VBA]

Sub Example(Items As Object)
Dim count As Long
`Getting Property value
count = Items.Count
End Sub

[Cicode]

FUNCTION Example(OBJECT hItems)
// Getting property value
INT nCount = _ObjectGetProperty(hItems, "Count");
END

In This Topic
TitleResults for “How to create a CRG?”Also Available in