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

ASPxTreeList.BeforeExport Event

Occurs before the tree list content is exported.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event ASPxTreeListBeforeExportEventHandler BeforeExport

Event Data

The BeforeExport event's data class is ASPxGridBeforeExportEventArgs. The following properties provide information specific to this event:

Property Description
ExportOptions Specifies the export parameters.
ExportTarget Gets the export format.

Remarks

The BeforeExport event enables you to perform custom actions before the tree list content is exported.

<dx:ASPxTreeList ID="ASPxTreeList1" runat="server" OnBeforeExport="ASPxTreeList1_BeforeExport">
</dx:ASPxTreeList>

Online Demo

ASPxTreeList - Export Data

See Also