Hi Waxalica,
The reported issue “Setting transparency table cell border fails the PDF conformance (PDF/X-1A)" has been fixed and the patch for this fix can be downloaded from the following location.
We can create grid with transparent border to create PdfPen with zero width. Please refer the below code snippet,
private static readonly PdfPen BlackPen = new PdfPen(new PdfColor(0, 0, 0), 1f);
private static readonly PdfPen BlackPenHalf = new PdfPen(new PdfColor(0, 0, 0), 0.2f);
private static readonly PdfPen TranseparentBorder = new PdfPen(new PdfColor(0, 0, 0), 0);
private static readonly PdfGridCellStyle GridCommandesCellStyleB = new PdfGridCellStyle
{
Borders =
{
Left = BlackPen,
Right = BlackPen,
Top = TranseparentBorder,
Bottom = TranseparentBorder
},
Font = Arial7B,
CellPadding = new PdfPaddings(5, 10, 1, 1)
}; |
Recommended approach - exe will perform automatic configuration
Please find the patch setup from below location:
Advanced approach – use only if you have specific needs and can directly replace existing assemblies for your build environment
Please find the patch assemblies alone from below location:
Assembly Version: 18.1.0.42
Installation Directions :
This patch should replace the files “Syncfusion.Pdf.Base.dll” under the following folder.
$system drive:\ Files\Syncfusion\Essential Studio\$Version # \precompiledassemblies\$Version#\4.5.1
Eg : $system drive:\Program Files\Syncfusion\Essential Studio\18.1.0.42 \precompiledassemblies\18.1.0.42 \4.5.1
To automatically run the Assembly Manager, please check the Run assembly manager checkbox option while installing the patch. If this option is unchecked, the patch will replace the assemblies in precompiled assemblies’ folder only. Then, you will have to manually copy and paste them to the preferred location or you will have to run the Syncfusion Assembly Manager application (available from the Syncfusion Dashboard, installed as a shortcut in the Application menu) to re-install assemblies.
Disclaimer :
Please note that we have created this patch for version 18.1.0.42 specifically to resolve the following issue(s) reported in this/the forum 152770
If you have received other patches for the same version for other products, please apply all patches in the order received.
This fix will be included in our 2020 Volume 1 SP1 release which will be available by end of May 2020 tentatively.
Regards,
Ravikumar.