TcxGridViewData.FilterRow Property
In This Article
Provides access to the filter row.
#Declaration
Delphi
property FilterRow: TcxGridFilterRow read;
#Property Value
Type | Description |
---|---|
Tcx |
A filter row. |
#Remarks
The filter row complements the filter box in a grid Table View. The filter row allows users to specify filter criteria for individual columns.
Alternatively, users can invoke a filter drop-down window in a column header.
#Code Example: Focus the Filter Row and Activate the Filter Row Editor
The following code example moves focus to the Filter Row and activates its in-place editor:
var
AView: TcxGridTableView;
begin
AView := cxGridTableView1;
AView.Controller.FocusedRow := AView.ViewData.FilterRow;
AView.Controller.EditingController.ShowEdit;
end;
See Also