Skip to main content

RowChangedEventArgs(BaseRow, RowProperties, RowChangeTypeEnum) Constructor

Creates a new RowChangedEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

Declaration

public RowChangedEventArgs(
    BaseRow row,
    RowProperties prop,
    RowChangeTypeEnum changeType
)

Parameters

Name Type Description
row BaseRow

A BaseRow object representing the processed row. This value is assigned to the RowEventArgs.Row property.

prop RowProperties

A RowProperties object containing the processed row’s properties settings. This value is assigned to the RowChangedEventArgs.Properties property.

changeType RowChangeTypeEnum

A RowChangeTypeEnum enumeration member specifying the way the row has been changed. This value is assigned to the RowChangedEventArgs.ChangeType property.

See Also