'Declaration
Public Event RowDetailsApplying As EventHandler(Of RowDetailsApplyingEventArgs)
public event EventHandler<RowDetailsApplyingEventArgs> RowDetailsApplying
Event Data
The event handler receives an argument of type RowDetailsApplyingEventArgs containing data related to this event. The following RowDetailsApplyingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
DataObject | Gets the index of the row that caused the event. |
Remarks
The event arguments contain RowDetailsApplyingEventArgs.DataObject property representing the data object in the corresponding data source.
Application can analyze RowDetailsApplyingEventArgs.DataObject property and cancel applying details for individual rows by setting event arguments’ System.ComponentModel.CancelEventArgs.Cancel property to true.
See Also