是否可以在Gembox.Document 中将表格插入文档并防止它被分页符拆分,但如果它不适合上一页,则将其移动到下一页?我查看了示例和文档,但没有找到任何东西。
问问题
1189 次
1 回答
1
您需要为位于该表中的段落设置KeepLinesTogether
和KeepWithNext
属性。true
例如尝试以下操作:
Table table = ...
foreach (ParagraphFormat paragraphFormat in table
.GetChildElements(true, ElementType.Paragraph)
.Cast<Paragraph>()
.Select(p => p.ParagraphFormat))
{
paragraphFormat.KeepLinesTogether = true;
paragraphFormat.KeepWithNext = true;
}
编辑
以上内容适用于大多数情况,但是当Table
元素具有空TableCell
元素且没有任何Paragraph
元素时,可能会出现问题。
为此,我们需要为Paragraph
这些TableCell
元素添加一个空元素,以便我们可以设置所需的格式(来源:Keep Table on same page):
// Get all Paragraph formats in a Table element.
IEnumerable<ParagraphFormat> formats = table
.GetChildElements(true, ElementType.TableCell)
.Cast<TableCell>()
.SelectMany(cell =>
{
if (cell.Blocks.Count == 0)
cell.Blocks.Add(new Paragraph(cell.Document));
return cell.GetChildElements(true, ElementType.Paragraph);
})
.Cast<Paragraph>()
.Select(p => p.ParagraphFormat);
// Set KeepLinesTogether and KeepWithNext properties.
foreach (ParagraphFormat format in formats)
{
format.KeepLinesTogether = true;
format.KeepWithNext = true;
}
于 2015-11-10T08:38:44.623 回答