Read only property that returns count of the
items in the collection.Syntax:
variable = object.Count
IDL definition:
[propget, id(2), helpstring("property Count")] HRESULT Count([out, retval] long *pVal);
Parameters:
object - Previously created UtilStringList object
variable - variable that will receive the number.
Examples:
var itemsCount = strlist.Count;
Dim itemsCount
itemsCount = strlist.Count
Applies to: UtilStringList |