Class CurrentCellKeyPressEventArgs
Represents the class that holds the information about the CurrentCellKeyPress 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 CurrentCellKeyPressEventArgs : GridEventArgs
Constructors
CurrentCellKeyPressEventArgs(Object)
Initializes a new instance of the CurrentCellKeyPressEventArgs class.
Declaration
public CurrentCellKeyPressEventArgs(object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSender | The original reporting sender that raised the event. |
Properties
ColumnIndex
Gets the column index of the current cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
KeyPressEventArgs
Gets the System.Windows.Forms.KeyPressEventArgs that holds the event data.
Declaration
public KeyPressEventArgs KeyPressEventArgs { get; }
Property Value
Type |
---|
System.Windows.Forms.KeyPressEventArgs |
RowIndex
Gets the row index of the current cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |
TableControl
Gets the TableControl.
Declaration
public TableControl TableControl { get; }
Property Value
Type |
---|
TableControl |