答案 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一起担任开发者布道者。