Class
GridViewCustomFilteringEventArgs

Provides data for the CustomFiltering event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class GridViewCustomFilteringEventArgs : EventArgs

Inheritance: objectEventArgsGridViewCustomFilteringEventArgs

Inherited Members EventArgs.Empty

Constructors

GridViewCustomFilteringEventArgs(GridViewTemplate, GridViewRowInfo)

Initializes a new instance of the GridViewCustomFilteringEventArgs class.

Declaration

cs-api-definition
public GridViewCustomFilteringEventArgs(GridViewTemplate template, GridViewRowInfo row)

Parameters

template

GridViewTemplate

The GridViewTemplate that is being filtered.

row

GridViewRowInfo

The GridViewRowInfo that is filtered.

GridViewCustomFilteringEventArgs(GridViewTemplate, GridViewRowInfo, bool)

Initializes a new instance of the GridViewCustomFilteringEventArgs class.

Declaration

cs-api-definition
public GridViewCustomFilteringEventArgs(GridViewTemplate template, GridViewRowInfo row, bool visible)

Parameters

template

GridViewTemplate

The GridViewTemplate that is being filtered.

row

GridViewRowInfo

The GridViewRowInfo that is filtered.

visible

bool

Properties

Handled

Gets or sets a value indicating whether this GridViewCustomFilteringEventArgs is handled.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

true if handled; otherwise, false.

Row

Gets the row info that is being filtered.

Declaration

cs-api-definition
public GridViewRowInfo Row { get; }

Property Value

GridViewRowInfo

The row info that is being filtered.

Template

Gets the GridViewTemplate that is being filtered.

Declaration

cs-api-definition
public GridViewTemplate Template { get; }

Property Value

GridViewTemplate

Visible

Gets or sets the visible state for the specified row.

Declaration

cs-api-definition
public bool Visible { get; set; }

Property Value

bool