ClassGridViewCustomFilteringEventArgs
Provides data for the CustomFiltering event
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewCustomFilteringEventArgs : EventArgs
Inheritance: objectEventArgsGridViewCustomFilteringEventArgs
Inherited Members
Constructors
GridViewCustomFilteringEventArgs(GridViewTemplate, GridViewRowInfo)
Initializes a new instance of the GridViewCustomFilteringEventArgs class.
Declaration
public GridViewCustomFilteringEventArgs(GridViewTemplate template, GridViewRowInfo row)
Parameters
template
The GridViewTemplate that is being filtered.
row
The GridViewRowInfo that is filtered.
GridViewCustomFilteringEventArgs(GridViewTemplate, GridViewRowInfo, bool)
Initializes a new instance of the GridViewCustomFilteringEventArgs class.
Declaration
public GridViewCustomFilteringEventArgs(GridViewTemplate template, GridViewRowInfo row, bool visible)
Parameters
template
The GridViewTemplate that is being filtered.
row
The GridViewRowInfo that is filtered.
visible
Properties
Handled
Gets or sets a value indicating whether this GridViewCustomFilteringEventArgs is handled.
Declaration
public bool Handled { get; set; }
Property Value
true if handled; otherwise, false.
Row
Gets the row info that is being filtered.
Declaration
public GridViewRowInfo Row { get; }
Property Value
The row info that is being filtered.
Template
Gets the GridViewTemplate that is being filtered.
Declaration
public GridViewTemplate Template { get; }
Property Value