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