Skip to content

Commit 02abc79

Browse files
Merge pull request #441 from telerik/dess-q4-2024
Add the new border styles
2 parents 3dc6143 + 76ca9ea commit 02abc79

28 files changed

+393
-63
lines changed

knowledge-base/create-dashed-line-border-table-radpdfprocessing.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,13 @@ Please note that you can modify the `Borders` property of the `DefaultCellProper
7676
table.DefaultCellProperties.Borders = new TableCellBorders(null, null, null,b);
7777
```
7878

79+
>note As of **Q3 2024** RadPdfProcessing offers *Dotted*, *Dashed*, and *DashSmallGap* [border styles]({%slug radpdfprocessing-editing-table%}) out-of-the-box without the necessity to play with the **StrokeDashArray** of the **FixedContentEditor**. With this update, the Dotted, Dashed, DashSmallGap, and Thick border lines are now exported from [RadFlowDocument]({%slug radwordsprocessing-model-radflowdocument%}) to [RadFixedDocument]({%slug radpdfprocessing-model-radfixeddocument%}) as well.
80+
7981
## See Also
8082

8183
* [TableCell]({%slug radpdfprocessing-editing-tablecell%})
8284
* [Table]({%slug radpdfprocessing-editing-table%})
83-
* [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}})
84-
* [Create Repeating Table Header Row in PdfProcessing]({%slug pdfprocessing-create-repeat-header-row%})
85+
* [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%})
86+
* [Supported Border Styles]({%slug radpdfprocessing-editing-table%})
8587

8688

9.13 KB
Loading
9.91 KB
Loading
12.4 KB
Loading
6.72 KB
Loading

libraries/radpdfprocessing/editing/table.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ position: 3
99

1010
# Table
1111

12-
13-
14-
The __Table__ class helps you easily create tabular data content. All you need to do is define the table content and pass a Table instance to a [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) or a [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}). From then on, these editors are responsible for positioning, measuring, drawing and splitting the table onto pages.
12+
The **Table** class helps you easily create tabular data content. All you need to do is define the table content and pass a Table instance to a [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) or a [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}). From then on, these editors are responsible for positioning, measuring, drawing and splitting the table onto pages.
1513

1614
![Rad Pdf Processing Editing Table 01](images/RadPdfProcessing_Editing_Table_01.png)
1715

18-
This article aims to present the table-related API in __RadPdfProcessing__. It contains the following sections:
19-
16+
This article aims to present the table-related API in __RadPdfProcessing__. It contains the following sections:
2017

2118
* [Defining Table Content](#defining-table-content)
2219

@@ -279,6 +276,17 @@ As a result, on __Figure 7__ you can see a 45-degree rotated table similar to th
279276
#### Figure 7: FixedWidth table
280277
![Rad Pdf Processing Editing Table 08](images/RadPdfProcessing_Editing_Table_08.png)
281278

279+
## Supported Border Styles
280+
281+
As of **Q3 2024**, along with the BorderStyle.*Single*, RadPdfProcessing offers *Dotted*, *Dashed*, and *DashSmallGap* border styles. With this update, the Dotted, Dashed, DashSmallGap, and Thick border lines are now exported from [RadFlowDocument]({%slug radwordsprocessing-model-radflowdocument%}) to [RadFixedDocument]({%slug radpdfprocessing-model-radfixeddocument%}) as well.
282+
283+
|BorderStyle|Border Design|
284+
|----|----|
285+
|Single|![Pdf Single Border](images/pdf-single-border.png)|
286+
|Dotted|![Pdf Dotted Border](images/pdf-dotted-border.png)|
287+
|Dashed|![Pdf Dashed Border](images/pdf-dashed-border.png)|
288+
|DashSmallGap|![Pdf Single Border](images/pdf-dash-small-gap-border.png)|
289+
282290
## See Also
283291

284292
* [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%})
59 KB
Loading
248 KB
Loading
1.65 KB
Loading
1.3 KB
Loading

0 commit comments

Comments
 (0)