Class GridCellComboValueChangedEventArgs
Provides data about the DropDownSelectionChanged event.
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridCellComboValueChangedEventArgs : SyncfusionRoutedEventArgs
Constructors
GridCellComboValueChangedEventArgs(RoutedEvent, Object)
Intializes a new GridCellComboValueChangedEventArgs.
Declaration
public GridCellComboValueChangedEventArgs(RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.RoutedEvent | routedEvent | The routed event. |
System.Object | source | The source of the event. |
GridCellComboValueChangedEventArgs(RoutedEvent, Object, RowColumnIndex, Object)
Intializes a new GridCellComboValueChangedEventArgs.
Declaration
public GridCellComboValueChangedEventArgs(RoutedEvent routedEvent, object source, RowColumnIndex cellRowColumnIndex, object selectedItem)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.RoutedEvent | routedEvent | The routed event. |
System.Object | source | Event source. |
RowColumnIndex | cellRowColumnIndex | The cell row column index. |
System.Object | selectedItem | The selected item in the combobox. |
Properties
CellRowColumnIndex
Gets the cell row column index.
Declaration
public RowColumnIndex CellRowColumnIndex { get; }
Property Value
Type |
---|
RowColumnIndex |
SelectedItem
Returns the selected item of the combobox.
Declaration
public object SelectedItem { get; }
Property Value
Type |
---|
System.Object |