Back to Devexpress

RowChangingEventArgs Class

windowsforms-devexpress-dot-xtraverticalgrid-dot-events-7f7279ec.md

latest2.7 KB
Original Source

RowChangingEventArgs Class

Provides data for the VGridControlBase.RowChanging event.

Namespace : DevExpress.XtraVerticalGrid.Events

Assembly : DevExpress.XtraVerticalGrid.v25.2.dll

NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

Declaration

csharp
public class RowChangingEventArgs :
    RowChangedEventArgs
vb
Public Class RowChangingEventArgs
    Inherits RowChangedEventArgs

RowChangingEventArgs is the data class for the following events:

Remarks

The VGridControlBase.RowChanging event fires before changing a row. The RowChangingEventArgs class allows you to identify the row via the inherited RowEventArgs.Row property. The RowChangedEventArgs.ChangeType property allows you to identify the way the row is being changed. The RowChangingEventArgs.PropertyValue property represents the current value of the changed row property.

The RowChangingEventArgs.CanChange property specifies whether the row must be changed. You can use it to prohibit row changing.

RowChangingEventArgs objects are created automatically and passed to VGridControlBase.RowChanging event handlers.

Inheritance

Object EventArgs RowEventArgs RowChangedEventArgs RowChangingEventArgs

See Also

RowChangingEventArgs Members

DevExpress.XtraVerticalGrid.Events Namespace