In Development
Last Updated: 15 May 2024 06:31 by ADMIN
Scheduled for 2024.2.426 (2024 Q2)
In scenarios with negative font and/or negative horizontal scaling the text is not rendered correctly.
In Development
Last Updated: 15 May 2024 05:47 by ADMIN
The list indentation is wrong when exporting several levels to PDF
In Development
Last Updated: 15 May 2024 05:33 by ADMIN
When a numbered list marker's font is exported to PDF, the resulting PDF file's list marker is not the proper font. The font of the text in the list entries themselves is correct.
In Development
Last Updated: 14 May 2024 08:41 by ADMIN
StartingPageNumber for PageField is not respected for sections other than the first one.
In Development
Last Updated: 13 May 2024 14:23 by ADMIN
ADMIN
Created by: Peshito
Comments: 5
Category: WordsProcessing
Type: Bug Report
4

List indent is not correct when exported to PDF. All indents start from the same position.

In Development
Last Updated: 08 May 2024 11:23 by ADMIN
PdfProcessing: Invalid annotation position leads to missing content.
In Development
Last Updated: 07 May 2024 13:29 by ADMIN
Exporting specific documents with fields to PDF causes NullReferenceException.
In Development
Last Updated: 07 May 2024 13:29 by ADMIN
After successful importing of DOCX with ordered list of TOC, try exporting it to PDF format. 
In Development
Last Updated: 26 Apr 2024 17:11 by ADMIN
Embedding a TrueType font collection using the FontsRepository.RegisterFont method leads to glyphs with empty outlines collection. The missing outlines are caused due to an empty glyf and loca tables of the TrueType font file.
In Development
Last Updated: 24 Apr 2024 09:24 by ADMIN
Sometimes when an XLSX file has a combo chart, you can get an error on import "The axes are incorrectly paired.". This happens when a combo chart has secondary axes and the file has likely been produced by an application other than Excel.
In Development
Last Updated: 16 Apr 2024 11:12 by ADMIN
ArgumentNullException when importing documents containing comments with no DateTime.
In Development
Last Updated: 29 Mar 2024 10:37 by ADMIN
SearchResult's GetWordBoundingRect returns the Rect of only the first word of the whole match.
In Development
Last Updated: 20 Mar 2024 08:55 by ADMIN
Wrong sheet name in exception message when adding sheet with already existing name
In Development
Last Updated: 01 Mar 2024 10:57 by ADMIN

The value of the TextBoxField is not visible until the field is clicked.

Workaround: Force content update:

foreach (var widget in textBoxField.Widgets)
{
    widget.RecalculateContent();
}

If the update still doesn't fix the issue, change the font prior to setting the value of the field:

foreach (var widget in textBoxField.Widgets)
{
    widget.TextProperties.Font = FontsRepository.Helvetica;
}
Another option could be to set the ViewersShouldRecalculateWidgetAppearances to true in order to force the viewers to update the appearance of the widgets.