Skip to main content
All docs
V25.1
  • CustomDataEventArgs(BaseRow, Int32, Object, Boolean, RowProperties) Constructor

    Initializes a new instance of the CustomDataEventArgs class with specified settings.

    Namespace: DevExpress.XtraVerticalGrid.Events

    Assembly: DevExpress.XtraVerticalGrid.v25.1.dll

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

    Declaration

    public CustomDataEventArgs(
        BaseRow row,
        int listSourceRow,
        object value,
        bool isGetData,
        RowProperties rowProperties
    )

    Parameters

    Name Type Description
    row BaseRow

    The unbound row. This value is assigned to the Row property.

    listSourceRow Int32

    The column’s index in the data source. This value is assigned to the ListSourceRowIndex property.

    value Object

    The currently processed value. This value is assigned to the Value property.

    isGetData Boolean

    Specifies whether the event handler should provide or save/post data for the unbound row.

    rowProperties RowProperties

    Contains the row’s properties settings. This value is assigned to the RowProperties property.

    See Also