Class CurrentCellDropDownSelectionChangedEventArgs
Provides data for CurrentCellDropDownSelectionChanged event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class CurrentCellDropDownSelectionChangedEventArgs : GridEventArgs
Constructors
CurrentCellDropDownSelectionChangedEventArgs(Object)
Initializes a new instance of CurrentCellDropDownSelectionChangedEventArgs class.
Declaration
public CurrentCellDropDownSelectionChangedEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
RowColumnIndex
Gets the RowColumnIndex of the corresponding item that were selected from the drop-down control.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The RowColumnIndex of corresponding selected item. |
SelectedIndex
Gets the index of the corresponding item that were selected from the drop-down control.
Declaration
public int SelectedIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An index of corresponding selected item. |
SelectedItem
Gets the data item that were selected from the drop-down control.
Declaration
public object SelectedItem { get; }
Property Value
Type | Description |
---|---|
System.Object | The data item that were selected from drop-down control. |