Class CellComboBoxSelectionChangedEventArgs
Provides data about the CellComboBoxSelectionChanged event.
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)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class CellComboBoxSelectionChangedEventArgs : GridEventArgs
Constructors
CellComboBoxSelectionChangedEventArgs(Object, Int32, Int32, Int32, GridColumn, Object, Object)
Initializes a new instance of the CellComboBoxSelectionChangedEventArgs class.
Declaration
public CellComboBoxSelectionChangedEventArgs(object selectedItem, int selectedIndex, int rowIndex, int columnIndex, GridColumn gridColumn, object record, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | selectedItem | The selected item. |
System.Int32 | selectedIndex | The selected index. |
System.Int32 | rowIndex | The row index. |
System.Int32 | columnIndex | The column index. |
GridColumn | gridColumn | The grid column. |
System.Object | record | The data object associated with the row. |
System.Object | originalSender | The orginal sender. |
Properties
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
GridColumn
Gets the GridColumn of the cell.
Declaration
public GridColumn GridColumn { get; }
Property Value
Type |
---|
GridColumn |
Record
Gets the data object associated with the row.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |
SelectedIndex
Gets the selected index of the combo box.
Declaration
public int SelectedIndex { get; }
Property Value
Type |
---|
System.Int32 |
SelectedItem
Gets the selected item of the combo box.
Declaration
public object SelectedItem { get; }
Property Value
Type |
---|
System.Object |