Available for: UI for ASP.NET MVC | UI for ASP.NET AJAX | UI for Blazor | UI for WPF | UI for WinForms | UI for Xamarin | UI for WinUI | UI for ASP.NET Core | UI for .NET MAUI

New to Telerik Document Processing? Download free 30-day trial

Using TxtFormatProvider

TxtFormatProvider makes it easy to import and export RadFlowDocument to/from plain text format, preserving the document structure.

All you have to do in order to use TxtFormatProvider is add references to the assemblies listed below:

  • Telerik.Windows.Documents.Core.dll
  • Telerik.Windows.Documents.Flow.dll

Import

In order to import a plain text document, you need to use the Import() method of TxtFormatProvider.

Example 1 shows how to use TxtFormatProvider to import a document from a file.

Example 1: Import document from a file

TxtFormatProvider provider = new TxtFormatProvider(); 
using (Stream input = File.OpenRead("Sample.txt")) 
{ 
    RadFlowDocument document = provider.Import(input); 
} 

And here is how you can import a document from string:

Example 2: Import document from a string

TxtFormatProvider provider = new TxtFormatProvider(); 
RadFlowDocument document = provider.Import(input); 

The resulting RadFlowDocument can be manipulated like any code-generated document.

Export

In order to export a document to plain text, you need to use the Export() method of TxtFormatProvider.

Example 3 shows how to use TxtFormatProvider to export RadFlowDocument to a file.

Example 3: Export a document to a file

TxtFormatProvider provider = new TxtFormatProvider(); 
using (Stream output = File.OpenWrite("sample.txt")) 
{ 
    RadFlowDocument document = CreateRadFlowDocument(); 
    provider.Export(document, output); 
} 

You can also export the document to a string and preserve it in a database.

Example 4: Export a document to a string

TxtFormatProvider provider = new TxtFormatProvider(); 
RadFlowDocument document = CreateRadFlowDocument(); 
string output = provider.Export(document); 
In this article