ITableFilterItem.State

Syntax

State: FilterItemState;

Description

The State property determines a filtering type. The default value is Inactive.

Example

Executing the example requires a form with the Button1 button, the DataGrid component named DataGrid1 and the UiDataSource component that is a data source for DataGrid.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    Var
        filter: ITableFilter;
        filterItem: ITableFilterItem;
        limit: ITableFilterLimitCondition;
    Begin
        filter := DataGrid1.TableFilter;
        filterItem := filter.Item(1);
        limit := filterItem.LimitCondition;
        limit.Count := 2;
        limit.HighestValues := True;
        limit.Percentage := False;
        filterItem.State := FilterItemState.Limit;
    End Sub Button1OnClick;

On clicking the Button1 button the second column is filtered by the specified number of elements.

See also:

ITableFilterItem