Class FilterOperatorsLoadingEventArgs
Provides data for the FilterOperatorsLoading event.
Inheritance
System.Object
FilterOperatorsLoadingEventArgs
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class FilterOperatorsLoadingEventArgs : EventArgs
Properties
AvailableOperators
Gets the available operators. You can only remove operators from this collection.
Declaration
public List<FilterOperator> AvailableOperators { get; }
Property Value
System.Collections.Generic.List<FilterOperator>
|
ColumnIndex
The index of the filtered column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
DefaultOperator1
Gets or sets the first default operator.
Declaration
public Nullable<FilterOperator> DefaultOperator1 { get; set; }
Property Value
System.Nullable<FilterOperator>
|
DefaultOperator2
Gets or sets the second default operator.
Declaration
public Nullable<FilterOperator> DefaultOperator2 { get; set; }
Property Value
System.Nullable<FilterOperator>
|