'Declaration Public Event Filtering As C1GridViewFilterEventHandler
public event C1GridViewFilterEventHandler Filtering
Event Data
The event handler receives an argument of type C1GridViewFilterEventArgs containing data related to this event. The following C1GridViewFilterEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Operators | Gets a dictionary containing field name / filter operator pairs. |
Values | Gets a dictionary containing field name / filter value pairs in the filter row. |
Remarks
To stop the operation set the Cancel property of the C1GridViewFilterEventArgs object to true.
See Also