Tagged Questions

MigraDoc Foundation an open source .NET library that easily creates documents based on an object model with paragraphs, tables, styles, etc. and renders them into PDF, XPS, or RTF.

learn more… | top users | synonyms

3
votes
1answer
527 views

is there anyway to have a background image in migradoc / pdfsharp

i want to create a cover page that has text over a background image. Is this possible in migradoc / pdfsharp ??
2
votes
1answer
320 views

Add embedded resource image to MigraDoc document

I'd like to add an image to the header of a MigraDoc document, but hardcoding a filesystem path in the document generation is slightly problematic for a number of issues - not the least of which is ...
1
vote
1answer
28 views

MigraDoc italic text overlapping

With the following code below, the text withing and after the double quotes is overlapping. It seems related to the font selection, however I may not be able to change that. Is there a way or ...
1
vote
1answer
494 views

Automatic New Page based on text

Hi there i had been sucessfully using this great library PDF Sharp.now i wanted to play with some dynamic Stuff so people recomended to switch to Migradoc I did and like its paragraph feature.Now the ...
1
vote
2answers
409 views

How do you have a bulletted list in migradoc / pdfsharp

even after reading this forum post, its still quite confusing how to create a bulletted list using migradoc / pdfsharp. I basically want to display a list of items like this: Dodge Nissan Ford ...
1
vote
1answer
445 views

How do I sign a pdf with electronic signature in PDFSharp?

Is it possible to sign a pdf document with electronic signature in PDFSharp? How to do it? Thanks for your suggestions.
1
vote
1answer
2k views

Keep table in one pice MigraDoc / PDFsharp

I am using PDFsharp / MigraDoc's to write tables and chart's to PDF files. This worked great so far, however MigraDoc's will always split my tables (vertically) when it should move the whole table to ...
0
votes
0answers
12 views

How to disable send email link on pdf file generated by migradoc?

I am using migradoc to generate a pdf file from ASP.NET and stream it in memory for user to view it. It works fine, but there is a send email function on pdf reader and when user click on it, it refer ...
0
votes
1answer
39 views

Migradoc , pdfsharp Paragraph without associated bookmarks

I do not know how to get rid of the bookmarks that are automatically generated when I add a paragraph: Paragraph inicio = document.LastSection.AddParagraph(); inicio.Style = "Heading1"; ...
0
votes
1answer
20 views

Print MigraDoc document to specific printer

I've created a MigraDoc/PdfSharp document and now need to send it to a specific printer without any user interaction. What do I need to use as a Renderer and how do I set the printer path/name to the ...
0
votes
1answer
77 views

PDFSharp - MigraDoc : Text in a table row exceeds page length.

Why does my row contents truncate? I am trying to write text on the PDF using contents in Text Files. I use StreamReader to read the file, and then for each Line, i add a row. I cannot change and ...
0
votes
1answer
94 views

Show MigraDoc/PdfSharp Document on screen

I want to use MigraDoc/PdfSharp to create and store PDF documents. Is there a way to show these documents in an application on-screen? I'd like to show the print in my program rather than starting ...
0
votes
1answer
152 views

MigraDoc PDFSharp - alignment of text frames

Section  TextFrame   Table    Row 1 - N, Dynamically generated using a datatable.  TextFrame   Table    Row 1 - N, Dynamically generated ...
0
votes
1answer
108 views

MigraDoc PDFSharp Add Page Borders

How do I add Borders to every page of PDF Doc (variable page numbers) using MigraDoc?
0
votes
1answer
79 views

.NET C# - MigraDoc - How to change document charset?

I've searched for solution to this problem, but still cannot find the answer. Any help would be appreciated. Document document = new Document(); Section section = document.AddSection(); ...
0
votes
1answer
84 views

Text With Superscript In MigraDoc

I have a class for writing a PDF doc via MigraDoc. A function makes a call like this: var p = row.Cells[1].AddParagraph(); p.AddLineBreak(); p.AddLineBreak(); _renderHtml(office["Address"], ...
0
votes
1answer
44 views

adding new pages only if needed to pdf at runtime using c#

I have some problems adding new pages. I want to add new pages only if needed and measured by the XParagraph (text) length. If the length doesnt fit on one page, a new page must be added. Also the ...
0
votes
1answer
76 views

KeepWith throws Object reference not set to an instance of an object

Hoping someone out there might have had the same issue as this and have found a resolution. I'm trying to set certain rows within a table to be grouped so that if a row falls into the next page the ...
0
votes
1answer
140 views

Recognizing text file Form Feeds in MigraDoc

Is there a way for MigraDoc to recognize form feeds characters that are already embedded in a ASCII text file? Or does one have to process the text file line by line to catch them?
0
votes
1answer
382 views

Is it possible to set a background image for all pages using PdfSharp/Migradoc?

I'm using PDFSharp/Migradoc to generate PDFs from my web application, and I've managed to get a background image working for the first page of the document. I start by creating a single section in ...
0
votes
1answer
162 views

Image location doesn't work if your page is Landscape in migradoc (pdfsharp)

i have the following code that works fine to put an image in the bottom left of the page (in portrait mode). once i change the page to landscape mode, the image goes off the screen. how would i lay ...
0
votes
1answer
80 views

is there a way to add a bookmark that is different than the text in the pdf document

using migradoc, i see how you can add a bookmark automatically by doing this: Paragraph p1 = document.LastSection.AddParagraph("Project Updates", "Heading2"); but what if i want to add a bookmark ...