Class FilterBarSelectionChangedEventArgs
Provides data for GridGroupingControl.FilterBarSelectionItemChanged event which occurs after an item selected through the filtered dropdown.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public sealed class FilterBarSelectionChangedEventArgs : SyncfusionEventArgs
Constructors
FilterBarSelectionChangedEventArgs(String, Int32, String)
Initializes a new instance of the FilterBarSelectionChangedEventArgs class.
Declaration
public FilterBarSelectionChangedEventArgs(string colName, int selectedIndex, string selectedText)
Parameters
Type | Name | Description |
---|---|---|
System.String | colName | GridColumnDescriptor. |
System.Int32 | selectedIndex | Index of the selected item. |
System.String | selectedText | Text of the selected item. |
Properties
ColName
Gets the currently selected column descriptor.
Declaration
public string ColName { get; }
Property Value
Type |
---|
System.String |
SelectedIndex
Gets the selected index of the filtered item.
Declaration
public int SelectedIndex { get; }
Property Value
Type |
---|
System.Int32 |
SelectedText
Gets the selected text of the filtered item.
Declaration
public string SelectedText { get; }
Property Value
Type |
---|
System.String |