Back to Devexpress

XtraReport.ExportToText(String, TextExportOptions) Method

xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xtrareport-dot-exporttotext-x28-system-dot-string-devexpress-dot-xtraprinting-dot-textexportoptions-x29.md

latest5.5 KB
Original Source

XtraReport.ExportToText(String, TextExportOptions) Method

SECURITY-RELATED CONSIDERATIONS

Using file paths sourced from untrusted input may expose unauthorized files or allow unintended file access. Always validate and normalize all external paths to prevent path manipulation.

Exports a report to the specified file in text format.

Namespace : DevExpress.XtraReports.UI

Assembly : DevExpress.XtraReports.v25.2.dll

NuGet Package : DevExpress.Reporting.Core

Declaration

csharp
public void ExportToText(
    string path,
    TextExportOptions options = null
)
vb
Public Sub ExportToText(
    path As String,
    options As TextExportOptions = Nothing
)

Parameters

NameTypeDescription
pathString

A String that is the full path to a file.

|

Optional Parameters

NameTypeDefaultDescription
optionsTextExportOptionsnull

The text export options. You can omit this parameter to use the current report export options.

|

Remarks

Once the document export has started, it will run until the resulting document is complete and cannot be interrupted or canceled in the process.

Note

Once the document export has started, it runs to completion and you cannot interrupt or cancel it.

This method exports a report to a file in text format with the specified text export options.

If you do not specify export options, the method uses the current report export options. To access the report export options, use the XtraReport.ExportOptions.Text notation.

Important

This method overwrites files with the same name without confirmation.

Use the ExportToTextAsync(String, TextExportOptions, CancellationToken) method instead of ExportToText to export a report asynchronously in a separate task.

Example

This example demonstrates how to export a report to text format.

The project uses the XtraReport.ExportToText method with the TextExportOptions object as a parameter.

csharp
using System.Text;
using System.Diagnostics;
using System.Globalization;
using DevExpress.XtraPrinting;
using DevExpress.XtraReports.UI;
// ...

private void ExportToText()
{
    // A path to export a report.
    string reportPath = "c:\\Test.txt";

    // Create a report instance.
    XtraReport1 report = new XtraReport1();

    // Get its Text export options.
    TextExportOptions txtOptions = report.ExportOptions.Text;

    // Set Text-specific export options.
    txtOptions.Encoding = Encoding.Unicode;
    txtOptions.Separator = CultureInfo.CurrentCulture.TextInfo.ListSeparator.ToString();

    // Export the report to Text.
    report.ExportToText(reportPath);

    // Show the result.
    StartProcess(reportPath);
}

// Use this method if you want to automaically open
// the created Text file in the default program.
public void StartProcess(string path)
{
    Process process = new Process();
    try
    {
        process.StartInfo.FileName = path;
        process.Start();
        process.WaitForInputIdle();
    }
    catch { }
}
vb
Imports System.Text
Imports System.Diagnostics
Imports System.Globalization
Imports DevExpress.XtraPrinting
Imports DevExpress.XtraReports.UI
' ...

Private Sub ExportToText()
    ' A path to export a report.
    Dim reportPath As String = "c:\\Test.txt"

    ' Create a report instance.
    Dim report As New XtraReport1()

    ' Get its Text export options.
    Dim txtOptions As TextExportOptions = report.ExportOptions.Text

    ' Set Text-specific export options.
    txtOptions.Encoding = Encoding.Unicode
    txtOptions.Separator = CultureInfo.CurrentCulture.TextInfo.ListSeparator.ToString()

    ' Export the report to Text.
    report.ExportToText(reportPath)

    ' Show the result.
    StartProcess(reportPath)
End Sub

' Use this method if you want to automaically open
' the created Text file in the default program.
Public Sub StartProcess(ByVal path As String)
    Dim process As New Process()
    Try
        process.StartInfo.FileName = path
        process.Start()
        process.WaitForInputIdle()
    Catch
    End Try
End Sub

See Also

Export Reports

Export to Text

XtraReport Class

XtraReport Members

DevExpress.XtraReports.UI Namespace