Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.ExportToHtml(Stream, String, String, Boolean) Method

Exports the Pivot Grid Control’s data to an HTML document with the specified encoding and title and sends it to the specified stream. The output file can be compressed (secondary characters e.g. spaces are removed) if required.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

public void ExportToHtml(
    Stream stream,
    string htmlCharSet,
    string title,
    bool compressed
)

#Parameters

Name Type Description
stream Stream

A Stream object which the created document is exported to.

htmlCharSet String

A String which specifies the encoding name set in the HTML document (e.g. “UTF-8”).

title String

A String which specifies the name shown as the title of the created HTML document.

compressed Boolean

true to compress the HTML code (secondary characters e.g. spaces are removed); otherwise, false.

#Remarks

The Pivot Grid Control’s data can only be exported if the XtraPrinting Library is available. Use the PivotGridControl.IsPrintingAvailable property to check whether the grid’s data can be exported.

See Also