PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Wed Apr 24, 2024 4:16 pm

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: Tue Jun 05, 2007 5:57 pm 
Offline

Joined: Fri Mar 23, 2007 11:37 pm
Posts: 16
Location: Berlin
How can I set the image alignment inside a table cell to right?
I tried the following:
Code:
row1.Cells[5].VerticalAlignment = VerticalAlignment.Top;
row1.Cells[5].Format.Alignment = ParagraphAlignment.Right;
Image image = row1.Cells[5].AddImage("blahblah.jpg");
image.RelativeVertical = RelativeVertical.Page;

but the image is still aligned to the left side of the cell.

Apart from that, is it possible to stretch the image to the cell dimensions by keeping the aspect ratio?

Regards,
André


Top
 Profile  
Reply with quote  
PostPosted: Tue Aug 05, 2008 9:25 pm 
Offline

Joined: Tue Jan 15, 2008 7:31 pm
Posts: 1
aknuth wrote:
How can I set the image alignment inside a table cell to right?
I tried the following:
Code:
row1.Cells[5].VerticalAlignment = VerticalAlignment.Top;
row1.Cells[5].Format.Alignment = ParagraphAlignment.Right;
Image image = row1.Cells[5].AddImage("blahblah.jpg");
image.RelativeVertical = RelativeVertical.Page;

but the image is still aligned to the left side of the cell.

Apart from that, is it possible to stretch the image to the cell dimensions by keeping the aspect ratio?

Regards,
André


hi.. maybe is too late.. but if you want to align image in a cell, you must put image in Paragraph objetc first, and that image take the paragraph alignment that you define

in the paragraph1 definition:
paragraph1.Format.Alignment= ParagraphAlignment.Right
paragraph1.AddImage("image.png").Width=50

in the table:
cell1.Add(paragraph1)


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: Google [Bot] and 193 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:  
cron
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group