Properties
- Property CountFail() As (Read Only)
-
Returns the number of failed tuples in the failed tuples collection.
It is redundant with
for
collection. For
collection, it will fail.
- Example:
-
This example retrieves in ObjectNumber the number of tuples
currently gathered in MyCollection.
ObjectNumber = MyCollection.CountFail
- Property CountSucceed() As (Read Only)
-
Returns the number of succeeded tuples in the succeeded tuples collection.
It is redundant with
for
collection. For
collection, it will fail.
- Example:
-
This example retrieves in ObjectNumber the number of tuples
currently gathered in MyCollection.
ObjectNumber = MyCollection.CountSucceed
Methods
- Func FailItem( iIndex) As
-
Retrieves a report failed component from a failed tuples collection, using its index or its name from the Check collection.
It is redundant with
for
collections. For
collections, it will fail.
- Parameters:
-
- iIndex
- The index or the name of the Report component to retrieve from the collection of Report Components. As a numerics, this index is the rank of the Report component in the collection. The index of the first component in the collection is 1, and the index of the last component is Count. As a string, it is the name you assigned to the component using the property or when creating the component. dd>
- Returns:
- The retrieved Report component dd>
- Func Item( iIndex) As
-
Retrieves a Report component using its index or its name from the Check collection.
- Parameters:
-
- iIndex
-
The index or the name of the Report component to retrieve from the collection of Report Components. As a numerics, this index is the rank of the Report component in the collection. The index of the first component in the collection is 1, and the index of the last component is Count. As a string, it is the name you assigned to the component using the property or when creating the component.
dd>
- Returns:
- The retrieved Report component dd>
- Func SucceedItem( iIndex) As
-
Retrieves a report component from a succeeded tuples collection, using its index or its name from the Check collection.
It is redundant with
for
collections. For
collections, it will fail.
- Parameters:
-
- iIndex
- The index or the name of the Report component to retrieve from the collection of Report Components. As a numerics, this index is the rank of the Report component in the collection. The index of the first component in the collection is 1, and the index of the last component is Count. As a string, it is the name you assigned to the component using the property or when creating the component. dd>
- Returns:
- The retrieved Report component dd>