HighestValues: Boolean;
The HighestValues property determines what elements should be displayed - greater of smaller.
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 least values are displayed.
See also: