INonLinearExplanatories.Count

Syntax

Count: Integer;

Description

This property is read-only.

The Count property returns number of explanatory variables in the collection.

Comments

Collection capacity is the number of elements a collection can contain. The Count property is the number of variables actually contained in the collection.

Capacity always exceeds or equals to the Count property value. If value of the Count property exceeds the capacity when a new style is added to the collection, the capacity automatically increases.

Example

Executing this example requires the Explanatories object of the INonLinearExplanatories type.

Sub UserProc;
Var
    Explanatories: INonLinearExplanatories;
Begin
    If Explanatories.Count > 0 Then
        Explanatories.Clear;
    End If;
End Sub UserProc;

After executing this example the collection of explanatory variables is cleared if the collection contains elements.

See also:

INonLinearExplanatories