Click here to Skip to main content
15,880,972 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am working on a a project in C#, wherein I have to export the database values to a PDF file.

I have to arrange the data grid values on the PDF, so i set my PRESENTd.Colspan = 2 which is a whole number.
I have commonly observed that if I have to type 1.5, then it does not consider decimal values, n considers a whole number.

How can I assign decimal value??

kindly help!

My Code -
C#
PdfPCell PRESENTd = new PdfPCell(new Paragraph(dataGridView1.Rows[i1].Cells["PresentReading"].Value.ToString(), new iTextSharp.text.Font(iTextSharp.text.Font.FontFamily.TIMES_ROMAN, 12)));
PRESENTd.Colspan = 2;
PRESENTd.MinimumHeight = 20f;
table.AddCell(PRESENTd);
Posted
Updated 7-Dec-12 20:35pm
v2

1 solution

Colspan is used to specify how many columns are being spanned by the cell.
You can only span complete columns hence the property only excepts integer values.

See iTextSharp - Introducing Tables[^]
 
Share this answer
 
Comments
Ash29 8-Dec-12 3:16am    
well is there any way to solve my problem
as in i hav to arrange/position the items with decimal values
is there any other alternative to achieve the same?
André Kraak 8-Dec-12 3:17am    
I do not think it is possible.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900