Back to Devexpress

CustomColumnDisplayTextEventHandler Delegate

windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-f932885d.md

latest2.0 KB
Original Source

CustomColumnDisplayTextEventHandler Delegate

Represents a method that will handle the ColumnView.CustomColumnDisplayText event.

Namespace : DevExpress.XtraGrid.Views.Base

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public delegate void CustomColumnDisplayTextEventHandler(
    object sender,
    CustomColumnDisplayTextEventArgs e
);
vb
Public Delegate Sub CustomColumnDisplayTextEventHandler(
    sender As Object,
    e As CustomColumnDisplayTextEventArgs
)

Parameters

NameTypeDescription
senderObject

The event source. Identifies the View that raised the event.

| | e | CustomColumnDisplayTextEventArgs |

A CustomColumnDisplayTextEventArgs object that contains event data.

|

Remarks

When creating a CustomColumnDisplayTextEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs unless you remove the delegate. For more information about event handler delegates, see Events and Delegates in MSDN.

See Also

DevExpress.XtraGrid.Views.Base Namespace