Contains data needed to handle the PreparingCellForEdit event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
public class GridViewPreparingCellForEditEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsGridViewPreparingCellForEditEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewPreparingCellForEditEventArgs class.
C#
public GridViewPreparingCellForEditEventArgs(GridViewColumn dataColumn, GridViewRowItem gridViewRow, FrameworkElement editor, RoutedEventArgs editEventArgs)
The column.
gridViewRowGridViewRowItemThe row.
editorFrameworkElementThe editing element.
editEventArgsRoutedEventArgsThe RoutedEventArgs instance containing the event data.
Properties
Gets the column.
C#
public GridViewColumn Column { get; }
The column.
EditingElement
FrameworkElement
Gets the editing element.
C#
public FrameworkElement EditingElement { get; }
The editing element.
EditingEventArgs
RoutedEventArgs
Gets the editing event args.
C#
public RoutedEventArgs EditingEventArgs { get; }
The editing event args.
Gets the row.
C#
public GridViewRowItem Row { get; }
The row.