State: FilterItemState;
The State property determines the filtration type. Default value is Inactive.
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 the 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 pressing the Button1 button the second column is filtered by the specified number of elements.
See also: