Completed
Last Updated: 12 Apr 2021 08:39 by ADMIN
Release R2 2021

The Nonbreaking space is exported as a Unicode character instead of the appropriate Control word.

Actual: "\n160?"

Expected: "\~"

Unplanned
Last Updated: 01 Apr 2021 14:31 by ADMIN
Created by: Antonio
Comments: 0
Category: WordsProcessing
Type: Feature Request
4
This will allow users to use the same list and styling for paragraphs but separate the lists by restarting them.
Unplanned
Last Updated: 30 Mar 2021 05:33 by ADMIN

 An incorrect file is produced when merging a stream more than 40 times.

Workaround: A possible workaround could be to merge up to 40 times in one file, then continue merging in a new one, and finally merge the newly generated documents.

 

Completed
Last Updated: 05 Apr 2021 10:13 by ADMIN
Release R2 2021

According to the RTF specification: The valid values for the "\ls" index are from 1 to 2000.

They are currently exported from zero or "\ls0".

Unplanned
Last Updated: 22 Mar 2021 10:30 by ADMIN
When importing or exporting a document with an invalid field structure, an exception is thrown. Add mechanism for handling that and skipping such fields so the other content can be imported.
Completed
Last Updated: 17 Mar 2021 10:01 by ADMIN
Release R2 2021
Import crashes when opening document with Structured Document Tag which has "w:dataBinding" element defined.
Unplanned
Last Updated: 04 Mar 2021 10:41 by ADMIN

When the table width is set to fixed with the value of zero:

<w:tblW w:w="0" w:type="dxa"/>
 the table is exported as a vertical line split into several pages.

Completed
Last Updated: 25 Mar 2021 16:31 by ADMIN
Release R2 2021
If there is a document with a Date field inside it, when you replace the word "date", a part of the field code will be changed as well.
Unplanned
Last Updated: 25 Feb 2021 16:11 by ADMIN

Add full support of the font-weight CSS property. The defined values are: normal, bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900. Currently bold and normal are supported.

Unplanned
Last Updated: 25 Feb 2021 16:11 by ADMIN
Add support for text-transform CSS property. The values can be: none, capitalize, uppercase, lowercase.
Completed
Last Updated: 02 Apr 2021 11:36 by ADMIN
Release R2 2021

Make it possible to import HTML file with an external style sheet, without the need to handle the LoadStyleSheetFromUri event in HtmlImportSettings. If the URL is correct the data can be internally downloaded.

Completed
Last Updated: 19 Feb 2021 16:54 by ADMIN
Release R1 2021 SP1
The height of the empty paragraphs when they are exported to PDF is shorter than it should be.
Completed
Last Updated: 18 Feb 2021 15:00 by ADMIN
Release R1 2021 SP1
 ArgumentException when trying to set the font size to zero on import.
Unplanned
Last Updated: 10 Feb 2021 14:35 by ADMIN
 Add an option to export the content controls as a form fields. 
Unplanned
Last Updated: 08 Feb 2021 16:06 by ADMIN

Absolute positioning of images, defined in the class stylesheet, is not respected.

Unplanned
Last Updated: 28 Jan 2021 12:49 by ADMIN

When exporting to a PDF filea document with a header containing a watermark, set by a shape, the rest of the header content is skipped and the header is exported with default margin values.

A possible workaround could be to set the watermark as an image.

Unplanned
Last Updated: 22 Feb 2021 14:31 by ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
0

This element specifies that an absolute position tab character shall be placed at the current location in the run content.

Completed
Last Updated: 29 Jan 2021 15:31 by ADMIN
Release R1 2021 SP1

The missing feature leads to this unwanted behavior:

  • When there is content control, which generates content on interaction, and it has some custom run properties set to it, they are lost when the user modifies it.

 

As a workaround, you need to apply a custom style (with the desired run properties) and apply it to the content control.

Unplanned
Last Updated: 22 Jan 2021 09:00 by ADMIN

When a watermark needs more space than the available on the page, it should be resized. At this point, part of its content can be cut off as it falls outside of the page bounds.

Workaround: Decrease the size of the watermark prior to exporting it to PDF:

foreach (var section in this.document.Sections)
{
    Header header = section.Headers.Default;
    if (header != null)
    {
        foreach (Watermark watermark in header.Watermarks)
        {
            if (watermark.TextSettings != null && watermark.TextSettings.Width > section.PageSize.Width)
            {
                watermark.TextSettings.Width = section.PageSize.Width;
            }
        }
    }
}

Completed
Last Updated: 26 Jan 2021 12:11 by ADMIN
Release R1 2021 SP1
When the URI source applied to the image cannot be parsed as a Path object to obtain its extension, an ArgumentException is thrown.