ASPxTreeList.ExportRtfToResponse(RtfExportOptions) Method
In This Article
Exports the ASPxTreeList’s data to a file in RTF format with the specified settings, and writes it to the response in binary format.
Namespace: DevExpress.Web.ASPxTreeList
Assembly: DevExpress.Web.ASPxTreeList.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public void ExportRtfToResponse(
RtfExportOptions exportOptions
)
#Parameters
Name | Type | Description |
---|---|---|
export |
Rtf |
A Rtf |
#Remarks
This method writes files to the response and does not write them to storage (for example, a file system).
TreeList.ExportRtfToResponse(new DevExpress.XtraPrinting.RtfExportOptions { ExportMode = RtfExportMode.SingleFile });
See Also