我正在尝试从 MVC 视图中生成一些 PDF,这很顺利。我最终遇到了这个并尝试使用它,但它具有如下所示的奇怪标记(它基于 ITextSharp):
<row>
<cell borderwidth="0.5" left="false" right="false" top="false" bottom="true">User Name</cell>
<cell borderwidth="0.5" left="false" right="false" top="false" bottom="true">Description</cell>
<cell borderwidth="0.5" left="false" right="false" top="false" bottom="true" horizontalalign="right">Lucky Number</cell>
<cell borderwidth="0.5" left="false" right="false" top="false" bottom="true" horizontalalign="right">Doubled</cell>
</row>
在这一点上,我真正想做的只是设置列的宽度(单元格,因为它在这里被称为)但cell
不接受我的style: width
orwidth
或任何东西。
我该如何使用这个东西?有没有更好的方法从 MVC 视图呈现 PDF?