Class FilterOperatorsLoadingEventArgs
Provides data for the FilterOperatorsLoading event.
Inheritance
System.Object
System.EventArgs
FilterOperatorsLoadingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 FilterOperator? DefaultOperator1 { get; set; }
Property Value
System.Nullable<FilterOperator>
|
DefaultOperator2
Gets or sets the second default operator.
Declaration
public FilterOperator? DefaultOperator2 { get; set; }
Property Value
System.Nullable<FilterOperator>
|