Class FilterOperatorsLoadingEventArgs
FilterOperatorsLoadingEventArgs.
Inheritance
Namespace: Telerik.Windows.Controls.Data.DataFilter
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class FilterOperatorsLoadingEventArgs : EventArgs
Constructors
FilterOperatorsLoadingEventArgs(ItemPropertyDefinition, IEnumerable<FilterOperator>)
Initializes a new instance of the Filter
Declaration
public FilterOperatorsLoadingEventArgs(ItemPropertyDefinition itemPropertyDefinition, IEnumerable<FilterOperator> availableOperators)
Parameters
Item The item property definition. |
System. The available operators. |
Properties
AvailableOperators
Gets the available operators. You can remove operators from this collection.
Declaration
public RemoveOnlyCollection<FilterOperator> AvailableOperators { get; }
Property Value
Remove The available operators. |
DefaultOperator
Gets or sets the default operator.
Declaration
public Nullable<FilterOperator> DefaultOperator { get; set; }
Property Value
System. The default operator. |
ItemPropertyDefinition
Gets the item property definition.
Declaration
public ItemPropertyDefinition ItemPropertyDefinition { get; }
Property Value
Item The item property definition. |