Skip to content

Commit fe77dc8

Browse files
committed
addressed the feedback
1 parent c841486 commit fe77dc8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

knowledge-base/customize-table-layout-radpdfprocessing.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ Here's an example code snippet demonstrating the setup:
5656
File.Delete(outputFilePath);
5757
PdfFormatProvider provider = new PdfFormatProvider();
5858

59-
6059
using (Stream output = File.OpenWrite(outputFilePath))
6160
{
6261
provider.Export(fixedDocument, output);
@@ -117,7 +116,6 @@ Here's an example code snippet demonstrating the setup:
117116
cell10.Blocks.AddBlock().InsertText(new FontFamily("Helvetica"), FontStyles.Normal, FontWeights.Normal, "Trailer:");
118117
cell10.ColumnSpan = 4;
119118

120-
121119
TableRow row6 = table.Rows.AddTableRow();
122120
TableCell cell11 = row6.Cells.AddTableCell();
123121
cell11.Blocks.AddBlock().InsertText(new FontFamily("Helvetica"), FontStyles.Normal, FontWeights.Normal, "Full Cont.:");
@@ -185,7 +183,8 @@ Here's an example code snippet demonstrating the setup:
185183

186184
* The rows which contain cells with ColumnSpan should contain less text blocks, e.g. if ColumnSpan=4, you need to insert 4 text blocks less for this row. Hence, skip adding the text block for the cells participating in the ColumnSpan functionality.
187185

188-
* At least one row should contain the cells participating in the ColumnSpan for the other cells. If all rows contain cells which span the same columns, you wouldn't need the column span functionality. You will just need a wider column to fit the content.
186+
* For a column to exist and have a calculated width, it must contain at least one cell with content among the rows within the table.
187+
189188

190189
## See Also
191190

libraries/radpdfprocessing/editing/table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,3 +294,4 @@ As of **Q3 2024**, along with the BorderStyle.*Single*, RadPdfProcessing offers
294294
* [TableRow]({%slug radpdfprocessing-editing-tablerow%})
295295
* [TableCell]({%slug radpdfprocessing-editing-tablecell%})
296296
* [How to Generate a Table with Images with PdfProcessing]({%slug generate-table-with-images-pdf-processing%})
297+
* [Creating Custom Layout Tables with RadPdfProcessing]({%slug customize-table-layout-radpdfprocessing%})

libraries/radpdfprocessing/editing/tablecell.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,4 @@ The result from __Example 3__ is illustrated on __Figure 1__.
105105
* [TableRow]({%slug radpdfprocessing-editing-tablerow%})
106106
* [Block]({%slug radpdfprocessing-editing-block%})
107107
* [How to Generate a Table with Images with PdfProcessing]({%slug generate-table-with-images-pdf-processing%})
108+
* [Creating Custom Layout Tables with RadPdfProcessing]({%slug customize-table-layout-radpdfprocessing%})

0 commit comments

Comments
 (0)