IStringFilterCondition.Value

Syntax

Value: String;

Description

The Value property determines the text string for the search in object names/identifiers.

Comments

After the application of this filter the protocol contains the records for the objects, which names/identifiers contain the specified text.

Example

Sub UserProc;

Var

FilCon: IAuditFiltersContainer;

Objs: IAuditFilterObjects;

Obj: IAuditFilterObject;

Con: IAuditFilterCondition;

Fil: IAuditFilter;

Filter: IStringFilterCondition;

Begin

FilCon := New AuditFiltersContainer.Create;

FilCon.Load;

Objs := FilCon.Filters;

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

Fil := Obj.Filter;

If Fil.Count <= 0 Then

Con := Fil.Add;

Else

Con := Fil.Item(0);

End If;

Filter := Con.NameFilter;

Filter.IsON := True;

Filter.CaseSensitive := True;

Filter.WholeWordsOnly := False;

Filter.Value := "Report";

Obj.Save;

FilCon.SaveToFile(FilCon.DefaultFileName);

End Sub UserProc;

After executing the example the filtering condition is changed: access protocol records are displayed only for the objects, that contain the "Report" in their identifiers.

See also:

IStringFilterCondition