Class FilterBarSelectedItemChangedEventArgs
Defines the class that provides data for FilterBarSelectedItemChanged event that occurs after an item is selected through the filtered dropdown.
Inheritance
System.Object
System.EventArgs
FilterBarSelectedItemChangedEventArgs
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.Grouping
Assembly: Syncfusion.Grid.Grouping.Windows.dll
Syntax
public sealed class FilterBarSelectedItemChangedEventArgs : SyncfusionEventArgs
Constructors
FilterBarSelectedItemChangedEventArgs(GridColumnDescriptor, Int32, String)
Initialize a new instance of the FilterBarSelectedItemChangedEventArgs class.
Declaration
public FilterBarSelectedItemChangedEventArgs(GridColumnDescriptor column, int selectedIndex, string selectedText)
Parameters
Type | Name | Description |
---|---|---|
GridColumnDescriptor | column | The FilteredColumn information. |
System.Int32 | selectedIndex | Index of the selected item. |
System.String | selectedText | Text of the selected item. |
Properties
Column
Gets the value of current-selected column descriptor.
Declaration
public GridColumnDescriptor Column { get; }
Property Value
Type |
---|
GridColumnDescriptor |
SelectedIndex
Gets the zero-based index of the currently selected item in a filter bar.
Declaration
public int SelectedIndex { get; }
Property Value
Type |
---|
System.Int32 |
SelectedText
Gets the value of selected text of the filtered item.
Declaration
public string SelectedText { get; }
Property Value
Type |
---|
System.String |