Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paragraphs added to HeaderFooter footer sections are written to the same position (and thus overlap) #414

Open
Extragorey opened this issue Dec 11, 2023 · 0 comments

Comments

@Extragorey
Copy link

Extragorey commented Dec 11, 2023

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.

PdfSharp-glitch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant