You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding multiple paragraphs to a footer section, the paragraphs are all written to the same position, instead of below each other.
This only appears to happen in footer sections, not header sections.
Version: PdfSharpCore v1.3.62 (retrieved from nuget)
Example:
var document = new Document();
var section = document.AddSection();
section.Footers.Primary.AddParagraph("Hello world");
section.Footers.Primary.AddParagraph("This overlaps the other line!");
Expected: The two (or more) paragraphs are printed below each other. Actual: Both paragraphs are printed in the same position, hence overlapping.
The text was updated successfully, but these errors were encountered:
When adding multiple paragraphs to a footer section, the paragraphs are all written to the same position, instead of below each other.
This only appears to happen in footer sections, not header sections.
Version: PdfSharpCore v1.3.62 (retrieved from nuget)
Example:
Expected: The two (or more) paragraphs are printed below each other.
Actual: Both paragraphs are printed in the same position, hence overlapping.
The text was updated successfully, but these errors were encountered: