代码之家  ›  专栏  ›  技术社区  ›  Dmitry Pavlushin

aspose中的嵌套表

  •  0
  • Dmitry Pavlushin  · 技术社区  · 7 年前

    DocumentBuilder ,指向单元格。我决定可以在单元格中插入一个单独的表:

    var table = builder.StartTable();
    
    builder.InsertCell();
    
    table.AutoFit(AutoFitBehavior.AutoFitToWindow);
    
    builder.Write("1");
    builder.EndRow();
    
    builder.InsertCell();
    builder.Write("2");
    builder.EndRow();
    
    builder.EndTable();
    

    但是,内桌的两侧仍然有一个边距:

    enter image description here (忽略被水平粗线分割的左侧单元格)

    table.AutoFit(AutoFitBehavior.AutoFitToWindow); 应该可以解决问题,但没有。我该怎么做才能获得所需的输出:

    enter image description here

    1 回复  |  直到 7 年前
        1
  •  0
  •   Dmitry Pavlushin    7 年前

    通过将所有其他单元格排成一行,我成功地垂直拆分了单元格 cell.CellFormat.VerticalMerge = CellMerge.First cell.CellFormat.VerticalMerge = CellMerge.Previous ,但要反分割的列中的单元格除外。