Unplanned
Last Updated: 24 Aug 2017 15:37 by ADMIN
ADMIN
Dilyan Traykov
Created on: 24 Aug 2017 15:34
Category: Spreadsheet
Type: Bug Report
0
Spreadsheet: Some of the text is truncated on export to PDF
A workaround which can be used for the moment is to traverse the TextFragment elements in the affected pages and set their Clipping to null:

foreach (ContentElementBase element in page.Content)
{
    TextFragment text = element as TextFragment;
    if (text != null) text.Clipping = null;
}
0 comments