Skip to main content

PivotGridSettings.HtmlCellPrepared Property

Enables the settings of individual data cells to be changed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public PivotHtmlCellPreparedEventHandler HtmlCellPrepared { get; set; }

Property Value

Type Description
PivotHtmlCellPreparedEventHandler

A PivotHtmlCellPreparedEventHandler delegate method allowing you to implement custom processing.

Remarks

The HtmlCellPrepared event is raised for each data cell within the PivotGrid’s data area when the corresponding table cell has been created. You can handle this event to change the style settings of individual cells.

The processed cell is identified by the event parameter’s PivotHtmlCellPreparedEventArgs.Cell property.

See Also