Skip to main content
A newer version of this page is available. .

CustomGroupDisplayTextEventArgs(GridViewBase, Int32, GridColumn, Object, String) Constructor

Initializes a new instance of the CustomGroupDisplayTextEventArgs class with the specified view, row handle, column, value and display text.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public CustomGroupDisplayTextEventArgs(
    GridViewBase view,
    int rowHandle,
    GridColumn column,
    object value,
    string displayText
)

Parameters

Name Type Description
view GridViewBase

A GridViewBase class descendant, which specifies the grid view containing an editor, for which an event has been raised.

rowHandle Int32

An integer value, which specifies the handle of the row, for which an event has been raised. This value is assigned to the RowEventArgs.RowHandle

column GridColumn

A GridColumn object, which specifies the grid column, for which an event has been raised. This object is assigned to the CellValueEventArgs.Column property.

value Object

A Object, which specifies the value, for which an event has been raised. This object is assigned to the CellValueEventArgs.Value property.

displayText String

A String value, which specifies the text to be displayed for a custom group. This object is assigned to the CustomGroupDisplayTextEventArgs.DisplayText property.

Remarks

Instances of the CustomGroupDisplayTextEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also