2012-08-14 69 views
1

我想用iTextSharp将一个html页面导出为pdf。我有2个表,我希望把边境第一个表而不是另一个iTextSharp:为2个表设置不同的边框尺寸

//my first tabe 
strHTMLContent.Append("<table width='100%'>"); 
strHTMLContent.Append("<tr>"); 
strHTMLContent.Append("<td>" text "</td>"); 
strHTMLContent.Append("<td>" text "</td>"); 
strHTMLContent.Append("<td>"); 

//the 2nd table that I don't want to have border 
strHTMLContent.Append("<table>"); 
strHTMLContent.Append("<tr><td>" row1 " </td></tr> "); 
strHTMLContent.Append("<tr><td> " row2" </td></tr> "); 
strHTMLContent.Append("<tr><td> " row3 " </td></tr> "); 
strHTMLContent.Append("</table >"); 
strHTMLContent.Append("</td>"); 
strHTMLContent.Append("</tr>"); 
strHTMLContent.Append("</table >"); 

//I use StyleSheet for set border size 
var st = new StyleSheet(); 
st.LoadTagStyle("table", "border", "1"); 

回答

0

也许有点晚,但还没有 - 你不能改变边框尺寸,只有是或否。太悲伤了,但这就是itextsharp。关于您的问题,您可以直接在html标签上直接设置边框并删除LoadTagStyle调用:

//my first tabe 
strHTMLContent.Append("<table width='100%' border='1'>"); 

//the 2nd table that I don't want to have border 
strHTMLContent.Append("<table border='0'>");