Class FilterViewCategoryCreatingEventArgs
Event arguments used in the CategoryCreating event.
Inheritance
System.Object
FilterViewCategoryCreatingEventArgs
Namespace: Telerik.WinControls.UI.FilterView
Assembly: Telerik.WinControls.UI.dll
Syntax
public class FilterViewCategoryCreatingEventArgs : CancelEventArgs
Constructors
FilterViewCategoryCreatingEventArgs(BaseFilterViewCategoryElement, ICollection<Object>)
Initializes a new instance of the FilterViewCategoryCreatingEventArgs class.
Declaration
public FilterViewCategoryCreatingEventArgs(BaseFilterViewCategoryElement category, ICollection<object> values)
Parameters
BaseFilterViewCategoryElement
category
The category element. |
System.Collections.Generic.ICollection<System.Object>
values
The values of the category. |
Properties
Category
Gets or sets the category.
Declaration
public BaseFilterViewCategoryElement Category { get; set; }
Property Value
BaseFilterViewCategoryElement
|
Values
Gets or sets the values collection.
Declaration
public ICollection<object> Values { get; set; }
Property Value
System.Collections.Generic.ICollection<System.Object>
|