UserName(Index: Integer): String;
Index — index of a position. The UserNameCount property determines the number of users.
The UserName property determines the name of the platform user for which the records of the log will be displayed.
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: