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

ASPxGridBase.ExportToPdf(Stream) Method

Exports the control’s data to the specified stream in PDF format using the specified options.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public void ExportToPdf(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object, to which the created document is exported.

Remarks

This method indirectly calls the PrintingSystemBase.ExportToPdf method of the XtraPrinting Library. If this library is not available the method does nothing. For details on the ExportToPdf method, see the PrintingSystemBase.ExportToPdf topic.

Example

<dx:ASPxGridView ID="ASPxGridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" KeyFieldName="ProductID">
    <Columns>
    ...
    </Columns>
</dx:ASPxGridView>

<dx:ASPxButton ID="ASPxButton1" runat="server" Text="Export" OnClick="ASPxButton1_Click">
</dx:ASPxButton>
See Also