Clear;
The Clear method enables to clear the filter from all conditions.
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: