在 iTextSharp 中设置表格高度

发布于 2024-12-06 11:46:17 字数 99 浏览 0 评论 0原文

我创建了一个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天赋异禀 2024-12-13 11:46:17

表格的高度取决于其父容器。所以你应该设置父单元格的高度。您可以通过两种方式执行此操作:

cell.MinimumHeight = 50f;

 cell.FixedHeight = 70f;

Table's height depends on its parent container. So you should set height of the parent cell. You can do this in two ways:

cell.MinimumHeight = 50f;

or

 cell.FixedHeight = 70f;
已下线请稍等 2024-12-13 11:46:17

表格的高度无法设置,表格的高度由其单元格的高度决定(可以设置单元格的高度属性)。如果您想拉伸该表格,可以向第二个表格添加一个空单元格。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文