PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Mon May 06, 2024 10:27 am

All times are UTC


Forum rules


Please read this before posting on this forum: Forum Rules



Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Mon Dec 01, 2008 5:17 am 
Offline

Joined: Mon Dec 01, 2008 5:12 am
Posts: 2
Is this property working properly, or am I misunderstanding its purpose? The source code comments the property as: "Gets or sets a value indicating whether to keep all the table rows on the same page." I'm using versions PDFSharp-1.2.1269.beta+MigraDocLite-1.2.2546. I create a document, fill up most of the page with text, add a table with KeepTogether = true and 10 or so rows, but the table spread across two pages when rendered.

Everything is pretty straightforward, just created a MigraDoc, then rendered with:

Code:
MigraDoc.Rendering.DocumentRenderer render = new MigraDoc.Rendering.DocumentRenderer(doc);
render.PrepareDocument();

for (int i = 0; i < render.FormattedDocument.PageCount; i++)
{
    PdfSharp.Pdf.PdfPage page = pdfDoc.AddPage();
    render.RenderPage(PdfSharp.Drawing.XGraphics.FromPdfPage(page), i + 1);
}

pdfDoc.Save("C:\\PDFTest.pdf");


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Dec 02, 2008 2:10 am 
Offline

Joined: Mon Dec 01, 2008 5:12 am
Posts: 2
I must have missed something, but have since discovered that a good way to keep a table on one page is:

myTableFirstRow.KeepWith = myTable.Rows.Count - 1;

Thus ensuring that the first row is kept with all the other rows of the table, and keeping it on the one page.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 76 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group