Skip to main content

CustomColumnDisplayTextEventArgs.DisplayText Property

Gets or sets the display text for the cell currently being processed.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.1.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public string DisplayText { get; set; }

Property Value

Type Description
String

A string representing the cell’s current display text.

Remarks

Initially the DisplayText property contains the text currently displayed in the cell. To provide custom text for the cell, assign it to this property.

The cell’s edit value can be obtained via the CustomColumnDisplayTextEventArgs.Value property.

See Also