IAuditFilterCondition.UserNameCount

Syntax

UserNameCount: Integer;

Description

The UserNameCount property determines the number of the platform users by which the filtering will be performed.

Example

Sub UserProc;

Var

FilCon: IAuditFiltersContainer;

Objs: IAuditFilterObjects;

Obj: IAuditFilterObject;

Con: IAuditFilterCondition;

Fil: IAuditFilter;

Begin

FilCon := New AuditFiltersContainer.Create;

FilCon.Load;

Objs := FilCon.Filters;

Obj := Objs.FindById("FILTER").Edit;

Fil := Obj.Filter;

Con := Fil.Item(0);

Con.UserNameCount := 2;

Con.UserName(0) := "Bashkirtseva";

Con.UserName(1) := "Sedunov";

Obj.Save;

FilCon.SaveToFile(FilCon.DefaultFileName);

End Sub UserProc;

After executing this example the property of filter condition is changed: show records of access protocol only for specified users.

See also:

IAuditFilterCondition