Class GridViewPreparingCellForEditEventArgs
Contains data needed to handle the PreparingCellForEdit event.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewPreparingCellForEditEventArgs : CancelEventArgs
Constructors
GridViewPreparingCellForEditEventArgs(GridViewColumn, GridViewRowItem, FrameworkElement, RoutedEventArgs)
Initializes a new instance of the GridViewPreparingCellForEditEventArgs class.
Declaration
public GridViewPreparingCellForEditEventArgs(GridViewColumn dataColumn, GridViewRowItem gridViewRow, FrameworkElement editor, RoutedEventArgs editEventArgs)
Parameters
GridViewColumn
dataColumn
The column. |
GridViewRowItem
gridViewRow
The row. |
System.Windows.FrameworkElement
editor
The editing element. |
System.Windows.RoutedEventArgs
editEventArgs
The System.Windows.RoutedEventArgs instance containing the event data. |
Properties
Column
Gets the column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
The column. |
EditingElement
Gets the editing element.
Declaration
public FrameworkElement EditingElement { get; }
Property Value
System.Windows.FrameworkElement
The editing element. |
EditingEventArgs
Gets the editing event args.
Declaration
public RoutedEventArgs EditingEventArgs { get; }
Property Value
System.Windows.RoutedEventArgs
The editing event args. |
Row
Gets the row.
Declaration
public GridViewRowItem Row { get; }
Property Value
GridViewRowItem
The row. |