Click here to Skip to main content
15,885,875 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i used itextsharp to create pdf in c#.
i uploaded the image in a table cell but border line is getting displayed.
i dont want the border to be shown.
i gave cell.border=0 and image.border=0 but still it displays border.
But for text in table cell it works. Only for image its not working.
Suggest me?
Posted
Comments
ZurdoDev 25-Feb-13 10:24am    
I have not used itextsharp before but the first thing I would do is check the documentation. Have you done that?

1 solution

table.DefaultCell.Border = 0;// Rectangle.BOX;
table.DefaultCell.BorderColor = Color.GRAY;
 
Share this answer
 

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