Class
GridViewPreparingCellForEditEventArgs

Contains data needed to handle the PreparingCellForEdit event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

cs-api-definition
public class GridViewPreparingCellForEditEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsGridViewPreparingCellForEditEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

GridViewPreparingCellForEditEventArgs(GridViewColumn, GridViewRowItem, FrameworkElement, RoutedEventArgs)

Initializes a new instance of the GridViewPreparingCellForEditEventArgs class.

Declaration

cs-api-definition
public GridViewPreparingCellForEditEventArgs(GridViewColumn dataColumn, GridViewRowItem gridViewRow, FrameworkElement editor, RoutedEventArgs editEventArgs)

Parameters

dataColumn

GridViewColumn

The column.

gridViewRow

GridViewRowItem

The row.

editor

FrameworkElement

The editing element.

editEventArgs

RoutedEventArgs

The RoutedEventArgs instance containing the event data.

Properties

Column

Gets the column.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

The column.

EditingElement

Gets the editing element.

Declaration

cs-api-definition
public FrameworkElement EditingElement { get; }

Property Value

FrameworkElement

The editing element.

EditingEventArgs

Gets the editing event args.

Declaration

cs-api-definition
public RoutedEventArgs EditingEventArgs { get; }

Property Value

RoutedEventArgs

The editing event args.

Row

Gets the row.

Declaration

cs-api-definition
public GridViewRowItem Row { get; }

Property Value

GridViewRowItem

The row.