在 iTextSharp 中设置表格高度
我创建了一个包含 2 列的表。在第一行的第二个单元格中,我想插入另一个只有一个单元格的表。问题是我无法设置第二个桌子的高度。它的拉伸程度超过了内容的高度。它的高度等于添加它的单元高度。
I've created a table with 2 columns. In the second cell of the first row I want to insert another table that have only one cell. The problem is that I can't set the height of the second table. It stretches more than the content height. Its height is equal with the cell height where it was added.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
表格的高度取决于其父容器。所以你应该设置父单元格的高度。您可以通过两种方式执行此操作:
或
Table's height depends on its parent container. So you should set height of the parent cell. You can do this in two ways:
or
表格的高度无法设置,表格的高度由其单元格的高度决定(可以设置单元格的高度属性)。如果您想拉伸该表格,可以向第二个表格添加一个空单元格。
The height of the table cannot be set, the height of the table is determined by the height of its cells (you can set the height-property of a cell). You could add an empty cell to the second table if you want to stretch this table.