Aspose.Word - 如何利用全表格单元格宽度?

时间:2017-07-11 22:43:13

标签: aspose aspose.words

我在word文档中有一个表,并希望使用FULL单元格宽度来插入数据。

默认行为是它留下空格(填充),如下所示。 enter image description here

如何在不留空间的情况下使用色谱柱的总宽度?

1 个答案:

答案 0 :(得分:1)

您可以使用Aspose.Words调整单元格内容的左侧,右侧,下方或上方的空间量(以磅为单位)。请尝试使用以下代码:

Document doc = new Document(MyDir + @"input.docx");

Table tab = doc.FirstSection.Body.Tables[0];

tab.BottomPadding = 0;
tab.LeftPadding = 0;
tab.RightPadding = 0;
tab.TopPadding = 0;

doc.Save(MyDir + @"17.7.docx");

希望,这有帮助。

我与Aspose一起担任开发者布道者。