Skip to content

Commit d20c5f1

Browse files
Merge pull request #534 from telerik/dessyordanova-patch-10
Update create-bold-text-run-wordsprocessing.md
2 parents a4ad6c5 + d5064a4 commit d20c5f1

16 files changed

+35
-68
lines changed

knowledge-base/create-bold-text-run-wordsprocessing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ res_type: kb
99
---
1010
## Environment
1111
| Version | Product | Author |
12-
| --- | --- | ---- |
12+
| ---- | ---- | ---- |
1313
| 2024.1.124 | RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1414

1515
## Description

knowledge-base/creating-colored-squares-radflowdocument.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ res_type: kb
1010
# Environment
1111

1212
| Version | Product | Author |
13-
| --- | --- | ---- |
13+
| ---- | ---- | ---- |
1414
| 2024.1.124 | RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1515

1616
## Description

knowledge-base/customize-headers-pdf-radwordsprocessing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Creating Headers with Left, Center, and Right Text/Image in Exported PDF Documents Using RadWordsProcessing
3-
description: Learn how to customize headers in PDF documents to have left, center, and right aligned text using RadWordsProcessing library.
3+
description: Learn how to customize headers in PDF documents to have left, center, and right-aligned text using RadWordsProcessing library.
44
type: how-to
55
page_title: How to Customize Headers in PDF Documents with RadWordsProcessing
66
slug: customize-headers-pdf-radwordsprocessing
@@ -12,7 +12,7 @@ ticketid: 1665701
1212
## Environment
1313

1414
| Version | Product | Author |
15-
| --- | --- | ---- |
15+
| ---- | ---- | ---- |
1616
| 2024.3.806| RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1717

1818
## Description
@@ -22,15 +22,15 @@ This article demonstrates how to generate a [RadFlowDocument]({%slug radwordspro
2222

2323
## Solution
2424

25-
To achieve a header with left, center, and right aligned sections in a PDF document, use the [RadWordsProcessing]({%slug radwordsprocessing-overview%}) library to create a header and then insert a [Table]({%slug radwordsprocessing-model-table%}) with three [cells]({%slug radwordsprocessing-model-tablecell%}) into the header. Each cell represents one section of the header (left, center, right) and can contain text or image. The following steps and code snippet demonstrate this process:
25+
To achieve a header with left, center, and right aligned sections in a PDF document, use the [RadWordsProcessing]({%slug radwordsprocessing-overview%}) library to create a header and then insert a [Table]({%slug radwordsprocessing-model-table%}) with three [cells]({%slug radwordsprocessing-model-tablecell%}) into the header. Each cell represents one section of the header (left, center, right) and can contain text or an image. The following steps and code snippet demonstrate this process:
2626

2727
1. Create a new [RadFlowDocument]({%slug radwordsprocessing-model-radflowdocument%}) and add a section to it.
2828
2. Define the page size and margins for the section.
2929
3. Add a paragraph with some text to the document as content.
3030
4. Add a header to the first section of the document.
3131
5. Inside the header, add a table with a single row and three cells.
3232
6. Set the preferred width for each cell to one-third of the page width.
33-
7. Add text or image to each cell with the desired alignment (left, center, right).
33+
7. Add text or an image to each cell with the desired alignment (left, center, right).
3434
8. Use the [PdfFormatProvider]({%slug radwordsprocessing-formats-and-conversion-pdf-pdfformatprovider%}) to export the document to a PDF file.
3535

3636
```csharp

knowledge-base/draw-chart-with-fixedcontenteditor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ res_type: kb
99
---
1010
# Environment
1111
| Version | Product | Author |
12-
| --- | --- | ---- |
12+
| ---- | ---- | ---- |
1313
| 2024.1.124 | RadPdfProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1414

1515
# Description
1616

1717
This article demonstrates a sample solution how to draw a chart in PdfProcessing.
1818

1919
# Solution
20-
The powerful [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) allows you draw a simulation of a chart element at the desired [Position]({%slug radpdfprocessing-concepts-position%}):
20+
The powerful [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) allows you to draw a simulation of a chart element at the desired [Position]({%slug radpdfprocessing-concepts-position%}):
2121

2222

2323
```csharp

knowledge-base/generate-doc-template-and-populate-with-collection-data-mail-merge.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ticketid: 1651971
1313
## Environment
1414

1515
| Version | Product | Author |
16-
| --- | --- | ---- |
16+
| ---- | ---- | ---- |
1717
| 2024.2.426| RadWordsProcessing|[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1818

1919
## Description

knowledge-base/generate-table-with-radfixeddocumenteditor.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to build a table using the RadFixedDocumentEditor for flo
44
type: how-to
55
page_title: How to Generate a Table with RadFixedDocumentEditor
66
slug: generate-table-with-radfixeddocumenteditor
7-
tags: pdf, document, processing, fixedcontenteditor, fixeddocumenteditor, edit, table,flow, position
7+
tags: pdf, document, processing, fixedcontenteditor, fixeddocumenteditor, edit, table, flow, position
88
res_type: kb
99
ticketid: 1674934
1010
---
@@ -14,15 +14,15 @@ ticketid: 1674934
1414

1515
## Description
1616

17-
When creating or editing a PDF document using [RadPdfProcessing]({%slug radpdfprocessing-overview%}), understanding how to manage the positioning of elements is essential. To eliminate the necessity of repositioning all elements below a newly added element in the middle of the PDF file, explore the functionality offerred by the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}) to generate a PDF table.
17+
When creating or editing a PDF document using [RadPdfProcessing]({%slug radpdfprocessing-overview%}), understanding how to manage the positioning of elements is essential. To eliminate the necessity of repositioning all elements below a newly added element in the middle of the PDF file, explore the functionality offered by the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}) to generate a PDF table.
1818

1919
## Solution
2020

21-
RadPdfProcessing offers the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}, which allows for a flow-like content management approach and allows you to insert all desired elements one after another without calculating the elements' position. We will use this approach for generating the PDF table.
21+
RadPdfProcessing offers the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}, which allows for a flow-like content management approach and allows you to insert all desired elements one after another without calculating the elements' position. We will use this approach to generate the PDF table.
2222

2323
This editor automates the positioning of elements, enabling you to insert content sequentially without manually calculating positions. This option might be more suitable for scenarios where manual positioning is cumbersome.
2424

25-
The following example demonstrates how to create a table which result is illustrated below:
25+
The following example demonstrates how to create a table whose result is illustrated below:
2626

2727
```csharp
2828
RadFixedDocument radFixedDocument = new RadFixedDocument();

knowledge-base/inserting-images-using-mail-merge-radwordsprocessing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ res_type: kb
1111
## Environment
1212

1313
| Version | Product | Author |
14-
| --- | --- | ---- |
14+
| ---- | ---- | ---- |
1515
| 2024.1.124 | RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1616

1717
## Description

knowledge-base/pdfprocessing-rotate-jpeg-with-orientation-set-in-metadata.md

+3-16
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,9 @@ tags: rotation, orientation, metadata, jpeg, image, exif
99
res_type: kb
1010
---
1111

12-
<table>
13-
<thead>
14-
<tr>
15-
<th>Product Version</th>
16-
<th>Product</th>
17-
<th>Author</th>
18-
</tr>
19-
</thead>
20-
<tbody>
21-
<tr>
22-
<td>2022.2.620</td>
23-
<td>RadPdfProcessing</td>
24-
<td><a href="https://www.telerik.com/blogs/author/martin-velikov">Martin Velikov</a></td>
25-
</tr>
26-
</tbody>
27-
</table>
12+
| Version | Product | Author |
13+
| ---- | ---- | ---- |
14+
| 2022.2.620| RadPdfProcessing |[Martin Velikov](https://www.telerik.com/blogs/author/martin-velikov)|
2815

2916
## Description
3017

knowledge-base/populate-table-data-mail-merge.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ res_type: kb
1111
# Environment
1212

1313
| Version | Product | Author |
14-
| --- | --- | ---- |
14+
| ---- | ---- | ---- |
1515
| 2024.1.124 | RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1616

1717
# Description

knowledge-base/quote-worksheet-values-and-csv-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ res_type: kb
1111
## Environment
1212
|Product Version|Product|Author|
1313
|----|----|----|
14-
|2024.1.124|SpreadProcessing|[Yoan Karamanov](https://www.telerik.com/blogs/author/yoan-karamanov)|
14+
|2024.1.124| RadSpreadProcessing |[Yoan Karamanov](https://www.telerik.com/blogs/author/yoan-karamanov)|
1515

1616
## Description
1717
This example shows how to export the values of a worksheet to a CSV file using [RadSpreadProcessing]({%slug radspreadprocessing-overview%}), while also specifying the delimiter and surrounding the cell values with quotes.

knowledge-base/remove-mergefields-retain-values-radwordsprocessing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ticketid: 1667593
1212
## Environment
1313

1414
| Version | Product | Author |
15-
| --- | --- | ---- |
15+
| ---- | ---- | ---- |
1616
| 2024.3.806| RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1717

1818
## Description

knowledge-base/resolve-compile-time-error-radpdfprocessing-telerik-reporting.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ticketid: 1670534
1212
## Environment
1313

1414
| Version | Product | Author |
15-
| --- | --- | ---- |
16-
| 18.3.24.1112| Telerik.Reporting|[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
17-
|2024.4.1106|RadPdfProcessing (.NET Standard)||
15+
| ---- | ---- | ---- |
16+
| 18.3.24.1112| Reporting |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
17+
|2024.4.1106| RadPdfProcessing (.NET Standard) ||
1818

1919
## Description
2020

knowledge-base/signaturepad-pdf-insert-written-signature.md

+3-16
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,9 @@ res_type: kb
1111

1212
## Environment
1313

14-
<table>
15-
<tbody>
16-
<tr>
17-
<td>Product Version</td>
18-
<td>R1 2022</td>
19-
</tr>
20-
<tr>
21-
<td>Product</td>
22-
<td>RadPdfProcessing | SignaturePad for Xamarin | PdfViewer for Xamarin</td>
23-
</tr>
24-
<tr>
25-
<td>Author</td>
26-
<td><a href="https://www.telerik.com/blogs/author/lance-mccarthy">Lance McCarthy</a></td>
27-
</tr>
28-
</tbody>
29-
</table>
14+
| Version | Product | Author |
15+
| ---- | ---- | ---- |
16+
| R1 2022| RadPdfProcessing |[Lance McCarthy](https://www.telerik.com/blogs/author/lance-mccarthy)|
3017

3118
## Description
3219

knowledge-base/update-toc-radwordsprocessing-before-docx-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ticketid: 1657401
1212
## Environment
1313

1414
| Version | Product | Author |
15-
| --- | --- | ---- |
15+
| ---- | ---- | ---- |
1616
| 2024.2.426| RadWordsProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1717

1818
## Description

knowledge-base/upgrade-trial-to-licensed-version.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ res_type: kb
1111

1212
| Version | Product | Author |
1313
| --- | --- | ---- |
14-
| N/A | Document Processing Libraries |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
14+
| Valid until Q2 2025 | Document Processing Libraries |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
1515

1616
## Description
1717

18-
This tutorial explains in details how to upgrade your Telerik [Trial]({%slug trial-license-limitations%}) to a Licensed version of the Document Processing Libraries.
18+
This tutorial explains in detail how to upgrade your Telerik [Trial]({%slug trial-license-limitations%}) to a Licensed version of the Document Processing Libraries.
19+
20+
>caution This approach is valid for versions **before Q2 2025**. For later versions, it is just necessary to update the [license key]({%slug setting-up-license-key%}).
1921
2022
Let's start with having a trial version installed on your machine and a project that uses the trial version:
2123

knowledge-base/wordsprocessing-fit-image.md

+4-13
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,10 @@ res_type: kb
1111
---
1212

1313
## Environment
14-
<table>
15-
<tbody>
16-
<tr>
17-
<td>Product Version</td>
18-
<td>2021.2.728.1</td>
19-
</tr>
20-
<tr>
21-
<td>Product</td>
22-
<td>Telerik Document Processing</td>
23-
</tr>
24-
</tbody>
25-
</table>
2614

15+
| Version | Product |
16+
| ---- | ---- | ---- |
17+
| 2021.2.728.1| RadWordsProcessing |
2718

2819
## Description
2920

@@ -59,4 +50,4 @@ Create an image and compare its size with the size available on the page. If the
5950

6051
* [RadFlowDocument]({%slug radwordsprocessing-model-radflowdocument%})
6152
* [ImageInline]({%slug radwordsprocessing-model-imageinline%})
62-
* [RadFlowDocumentEditor]({%slug radwordsprocessing-editing-radflowdocumenteditor%})
53+
* [RadFlowDocumentEditor]({%slug radwordsprocessing-editing-radflowdocumenteditor%})

0 commit comments

Comments
 (0)