Skip to content

Commit 722dfec

Browse files
committed
Replace the banner and link the Timeout KB
1 parent 57de148 commit 722dfec

File tree

20 files changed

+51
-19
lines changed

20 files changed

+51
-19
lines changed

images/dpl-ninja.png

-19.6 KB
Loading

introduction.md

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,42 @@
11
---
22
title: Introduction
3-
page_title: Telerik Document Processing
3+
page_title: Welcome to Telerik Document Processing Libraries
44
description: Telerik Document Processing is a bundle of UI-independent, cross-platform APIs enabling you to process the most commonly used flow, fixed and spreadsheet document formats.
55
slug: introduction
6-
tags: introduction
6+
tags: introduction, dpl, document, processing, pdf, word, excel
77
published: True
88
position: 0
99
---
1010

1111
# Welcome to Telerik Document Processing Libraries
1212

13-
**Telerik Document Processing** is a bundle of UI-independent cross-platform libraries that enable you to process the most commonly used flow, fixed and spreadsheet document formats for web and desktop. The Document Processing library allows you to create, import, modify and export documents without relying on external dependencies like Adobe Acrobat or Microsoft Office.
13+
**Telerik Document Processing** is a bundle of **UI-independent** *cross-platform* libraries that enable you to process the most commonly used flow, fixed and spreadsheet document formats for web and desktop. The Document Processing library allows you to create, import, modify and export documents without relying on external dependencies like Adobe Acrobat or Microsoft Office.
1414

1515
![DPL Ninja](images/dpl-ninja.png)
1616

17+
|Library|Description|
18+
|----|----|
19+
| [RadPdfProcessing]({%slug radpdfprocessing-overview%})|A processing library that allows you to create, import, and export PDF documents from your code. You can use it in any web or desktop .NET application without relying on third-party software like Adobe Acrobat.|
20+
|[RadSpreadProcessing]({%slug radspreadprocessing-overview%})|A powerful library that enables you to create applications with native support for spreadsheet documents. With RadSpreadProcessing, you can create spreadsheets from scratch, modify existing documents or convert between the most common spreadsheet formats. You can save the generated workbook to a local file, stream, or stream it to the client browser.|
21+
|[RadSpreadStreamProcessing]({%slug radspreadstreamprocessing-overview%})|Spread streaming is a document processing paradigm that allows you to create or read big spreadsheet documents with great performance and minimal memory footprint. The key for the memory efficiency is that the spread streaming library writes the spreadsheet content directly to a stream without creating and preserving the spreadsheet document model in memory.|
22+
|[RadWordsProcessing]({%slug radwordsprocessing-overview%})|A processing library that allows you to create, modify and export documents to a variety of formats. Through the API, you can access each element in the document and modify, remove it or add a new one. The generated content you can save as a stream, as a file, or sent it to the client browser.|
23+
|[RadZipLibrary]({%slug radziplibrary-overview%})| It allows you to compress and combine files in ZIP archives, browse and extract files from existing ZIP archives and compress streams for easy file shipping and reduced storage space.|
24+
1725
{% if site.has_cta_panels == true %}
1826
{% include cta-panel-introduction.html %}
1927
{% endif %}
2028

2129
## Key Features
2230

23-
* **UI-Independent**: The libraries are UI-Independent and cover all .NET technologies, from desktop and web to mobile, and can be deployed in client, server-side and cloud apps.
24-
* **No need for 3rd party software – No Server Deployment Fees**: Enable document manipulation within your application without relying on 3rd party software such as Microsoft Office or Adobe Acrobat Reader.
25-
26-
* **Convenient API**: Add document processing capabilities to your applications in no time by utilizing the convenient APIs. Enable creating, editing and converting documents with just a few lines of code.
27-
28-
* **Performance and Speed**: The libraries are decoupled from UI and can provide a great performance in different cases, especially when dealing with huge excel files.
29-
30-
* **Any document. Any Business.**: The Telerik Document Processing is suitable for various business cases and scenarios, where document creation or manipulation is required.
31-
32-
* **Support for Variety of File Formats**: The Telerik Document Processing includes 5 libraries for manipulating [Office Open XML](https://en.wikipedia.org/wiki/Office_Open_XML) file formats and PDF documents in your application.
33-
34-
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%}) for importing and exporting documents. The **Import** and **Export** methods of all FormatProviders have a mandatory *TimeSpan?* timeout parameter after which the operation will be cancelled.
31+
|Feature|Description|
32+
|----|----|
33+
|**UI-Independent**|The libraries are UI-Independent and cover all .NET technologies, from desktop and web to mobile, and can be deployed in client, server-side and cloud apps.|
34+
|**No need for 3rd party software - No Server Deployment Fees**|Enable document manipulation within your application without relying on 3rd party software such as Microsoft Office or Adobe Acrobat Reader.|
35+
|**Convenient API**|Add document processing capabilities to your applications in no time by utilizing the convenient APIs. Enable creating, editing and converting documents with just a few lines of code.|
36+
|**Performance and Speed**|The libraries are decoupled from UI and can provide a great performance in different cases, especially when dealing with huge excel files.|
37+
|**Any document. Any Business.**|The Telerik Document Processing is suitable for various business cases and scenarios, where document creation or manipulation is required|
38+
|**Support for Variety of File Formats**|The Telerik Document Processing includes 5 libraries for manipulating [Office Open XML](https://en.wikipedia.org/wiki/Office_Open_XML) file formats and PDF documents in your application.|
39+
|**Timeout Mechanism**|[Timeout Mechanism]({%slug timeout-mechanism-in-dpl%}) for importing and exporting documents. The **Import** and **Export** methods of all FormatProviders have a mandatory *TimeSpan?* timeout parameter after which the operation will be cancelled.|
3540

3641
For more details about the benefits of using Telerik Document Processing, see the [Telerik Document Processing product overview page](https://www.telerik.com/document-processing-libraries).
3742

@@ -68,7 +73,7 @@ The Telerik Document Processing libraries support the following file formats:
6873
|[UI for WinForms](https://www.telerik.com/products/winforms.aspx)|[UI for WinForms](https://www.telerik.com/products/winforms.aspx)|[UI for WinUI](https://www.telerik.com/winui)|
6974
|[UI for Silverlight (discontinued)](https://www.telerik.com/products/silverlight/overview.aspx)||[UI for .NET MAUI](https://www.telerik.com/maui-ui)|
7075

71-
All versions are available as [NuGet packages]({%slug installation-nuget-packages%}). The assemblies/packages for .NET Standard do not contain the word *Windows* in their name.
76+
All versions are available as [NuGet packages]({%slug installation-nuget-packages%}). The assemblies/packages for .NET Standard do not contain the word *Windows* in their name. Learn [What Versions of Document Processing Libraries are Distributed with the Telerik Products]({%slug distribute-telerik-document-processing-libraries-net-versions%})
7277

7378
## Getting Started
7479

libraries/radpdfprocessing/formats-and-conversion/convert-to-image/using-image-format-provider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ The __SkiaImageFormatProvider__ exposes the following settings:
121121
* [Cropping PDF Pages and Saving as Images Using RadPdfProcessing]({%slug crop-save-pdf-pages-as-images-radpdfprocessing%})
122122
* [Converting a PDF Document to a Multipage TIFF Image]({%slug convert-pdf-to-multipage-tiff-radpdfprocessing%})
123123
* [Converting Multi-page TIFF Images to PDF]({%slug convert-tiff-to-pdf-radpdfprocessing%})
124+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radpdfprocessing/formats-and-conversion/ocr/ocrformatprovider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ position: 1
1616
## See Also
1717

1818
* [Prerequisites]({%slug radpdfprocessing-formats-and-conversion-ocr-prerequisites%})
19+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radpdfprocessing/formats-and-conversion/pdf/pdfformatprovider/pdfformatprovider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,4 @@ The resulting document can be opened in any application which supports PDF docum
8787

8888
* [PdfFormatProvider API Reference](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider.html)
8989
* [Settings]({%slug radpdfprocessing-formats-and-conversion-pdf-settings%})
90+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radpdfprocessing/formats-and-conversion/plain-text/textformatprovider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ __Example 1__ shows how to use __TextFormatProvider__ to export __RadFixedDocume
4040

4141
* [Plain text]({%slug radpdfprocessing-formats-and-conversion-plain-text-text%})
4242
* [TextFormatProvider Settings]({%slug radpdfprocessing-formats-and-conversion-plain-text-settings%})
43+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radspreadprocessing/formats-and-conversion/csv/csvformatprovider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ __Example 2__ demonstrates how to export an existing Workbook to a CSV file. The
7676
* [IWorkbookFormatProvider API Reference](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider.html)
7777
* [CsvFormatProvider API Reference](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Spreadsheet.FormatProviders.TextBased.Csv.CsvFormatProvider.html)
7878
* [Import/Load and Export/Save RadSpreadProcessing Workbook]({%slug import-export-save-load-workbook%})
79+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radspreadprocessing/formats-and-conversion/data-table/using-data-table-format-provider.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@ Example 3 demonstrates how you can export an existing Worksheet to a DataTable.
6262

6363
# See Also
6464

65-
* [Settings]({%slug radspreadprocessing-formats-and-conversion-data-table-formatprovider-settings%})
65+
* [Settings]({%slug radspreadprocessing-formats-and-conversion-data-table-formatprovider-settings%})
66+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radspreadprocessing/formats-and-conversion/general-information.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,4 @@ public class WorkbookFormatProvidersManager
152152
## See Also
153153

154154
* [Activate a Worksheet]({%slug radspreadprocessing-working-with-worksheets-activate-worksheet%})
155+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

libraries/radspreadprocessing/formats-and-conversion/import-and-export-to-excel-file-formats/xls/xlsformatprovider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ __Example 2__ demonstrates how to export an existing Workbook to an XLS file. Th
103103
## See Also
104104

105105
* [Import/Load and Export/Save RadSpreadProcessing Workbook]({%slug import-export-save-load-workbook%})
106+
* [Timeout Mechanism]({%slug timeout-mechanism-in-dpl%})

0 commit comments

Comments
 (0)