我正在使用Aspose.Words(评估模式)为.Net生成Word文档,其中我正在如下构建表格

   Document doc = new Document();
   DocumentBuilder builder = new DocumentBuilder(doc);
   Table table = builder.StartTable();
   for (int i = 0; i < 5; i++)
   {
       for(int j = 0; j < 20; j++)
       {
            builder.InsertCell();
            builder.Write("Column : "+ j.toString());
        }
     builder.EndRow();
   }
   builder.EndTable();
   doc.Save(ms, Aspose.Words.Saving.SaveOptions.CreateSaveOptions(SaveFormat.Doc));
   FileStream file = new FileStream(@"c:\NewDoc.doc", FileMode.Create, FileAccess.Write);
   ms.WriteTo(file);
   file.Close();
   ms.Close();


现在这段代码给出了带有不可见列的以下单词文件,它应该给出20列




有什么办法可以将不可见的列拆分为下一页?

最佳答案

行可以转到下一页而不是列,这是Microsoft Word的行为。您可以更改文档的设计和格式以使所有列可见。以下是一些指针。


减少页边距(左右)
使像元宽度固定。这样,如果找到更多字符,则每个单元格内的文本将向下分解。
将方向更改为横向,您将拥有更宽的页面。


Aspose.Words documentation website上查看相关文章和代码示例。

请尝试以下更新的代码示例:

string dst = dataDir + "table.doc";

Aspose.Words.Document doc = new Aspose.Words.Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Set margins
doc.FirstSection.PageSetup.LeftMargin = 10;
//doc.FirstSection.PageSetup.TopMargin = 0;
doc.FirstSection.PageSetup.RightMargin = 10;
//doc.FirstSection.PageSetup.BottomMargin = 0;

// Set oriantation
doc.FirstSection.PageSetup.Orientation = Aspose.Words.Orientation.Landscape;

Aspose.Words.Tables.Table table = builder.StartTable();

for (int i = 0; i < 5; i++)
{
    for (int j = 0; j < 20; j++)
    {
        builder.InsertCell();
        // Fixed width
        builder.CellFormat.Width = ConvertUtil.InchToPoint(0.5);
        builder.Write("Column : " + j);
    }
    builder.EndRow();
}
builder.EndTable();

// Set table auto fit behavior to fixed width columns
table.AutoFit(AutoFitBehavior.FixedColumnWidths);

doc.Save(dst, Aspose.Words.Saving.SaveOptions.CreateSaveOptions(Aspose.Words.SaveFormat.Doc));


我与Aspose合作担任开发人员。

关于c# - Word文档中的表格具有n列以适合每个页面大小,并使用Aspose.words for .Net允许截断的列跨页,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30893506/

10-13 23:45