IAuditFilter.Clear

Syntax

Clear;

Description

The Clear method enables to clear the filter from all conditions.

Example

Sub Main;

Var

MB: IMetabase;

MS: IMetabaseSecurity;

AL: IAuditLog;

AF: IAuditFilter;

Begin

MB:=MetabaseClass.Active;

MS:=MB.Security;

Al:=MS.OpenAuditLog;

AF:=Al.Filter;

AF.Clear;

End Sub Main;

After executing the example all filtering conditions are deleted.

See also:

IAuditFilter