Count: Integer;
The property is read-only.
The Count property returns the number of objects in collection.
Sub Main;
Var
FilCon: IAuditFiltersContainer;
Objs: IAuditFilterObjects;
Begin
FilCon := New AuditFiltersContainer.Create;
FilCon.Load;
Objs := FilCon.Filters;
Debug.WriteLine(FilCon.Count);
End Sub Main;
After executing the example the number of filters, that are stored in the container loaded from file by default, are displayed in console window.
See also: