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.

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.
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: 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: 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.

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.

Completed
Last Updated: 29 Jan 2021 14:49 by ADMIN
Release R1 2021 SP1
When exporting to PDF the bullets of the unsorted list are missing.
Completed
Last Updated: 29 Jan 2021 14:43 by ADMIN
Release R1 2021 SP1
Image size is not respected when importing HTML
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.

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.
Completed
Last Updated: 26 Jan 2021 10:28 by ADMIN
Release R1 2021 SP1
The exception is thrown while importing an image that has any value for height property applied through a style.
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: 21 Jan 2021 09:33 by ADMIN
Release R1 2021
Currently, the unsupported Structured document tags (SDTs) in the document are skipped on import.
Completed
Last Updated: 20 Jan 2021 12:32 by ADMIN
Release R1 2021
ADMIN
Created by: Deyan
Comments: 19
Category: WordsProcessing
Type: Feature Request
67
At this point the PdfFormatProvider does not support floating images and these elements are skipped when exporting to PDF.

The feature is trivial for floating images with "Behind Text"/"In Front of Text" settings, but otherwise floating images are affecting the text layout in complex ways.
Unplanned
Last Updated: 15 Jan 2021 10:29 by ADMIN

When importing a document with a style set in a parent <div> element its children`s content doesn't inherit it.

Steps to reproduce:

  1. Import the following HTML string:
    <div style="background-color: green;">
    	<h1>Test heading</h1>
    	<div>Test div</div>
    </div>
  2. Export it as PDF (or any other supported format)

Actual vs Expected: