使用aspose.Words更新表格列宽

public static bool UpdateTableStyle(string filePath)

{

try

{

Document doc = new Document();

//样式

Style style = doc.Styles.Add(StyleType.Paragraph, "cellStyle");

style.Font.Name = "simsun";

PageSetup pageSet = doc.Sections[0].PageSetup;

pageSet.PaperSize = PaperSize.A4;

pageSet.LeftMargin = ConvertUtil.MillimeterToPoint(5);

pageSet.RightMargin = ConvertUtil.MillimeterToPoint(5);

//pageSet.PageStartingNumber = 1;

//pageSet.PageNumberStyle = NumberStyle.Arabic;

DocumentBuilder builder = new DocumentBuilder(doc);

builder.MoveToHeaderFooter(HeaderFooterType.FooterPrimary);

builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;

//builder.InsertField("PAGE", "");

//builder.Write("/");

//builder.InsertField("NUMPAGES", "");

double cellWidth = 18;

double portraitMinWidth = ConvertUtil.MillimeterToPoint(cellWidth);//纵向最小列宽

double pageWidth = 200d;//A4纵向可编辑区域宽度200毫米//A4横向向可编辑区域宽度290毫米

List<Document> docItemList = new List<Document>();

bool IsLandscape = false;//是否为横向

//先计算是使用横向还是纵向的A4

if (File.Exists(filePath))

{

Document docItem = new Document(filePath);

docItemList.Add(docItem);

var tableList = docItem.GetChildNodes(NodeType.Table, true);

bool isExist = false;

foreach (Table table in tableList)

{

if(table.Range != null && table.Range.Bookmarks != null)

{

foreach (Bookmark bkName in table.Range.Bookmarks)

{

if (bkName.Name == "aa")

{

isExist = true;

break;

}

}

}

if (isExist)

{

//先计算是否符合纵向A4纸要求的列宽

double width = ConvertUtil.MillimeterToPoint(200d / table.Rows[2].Cells.Count);

if (width < portraitMinWidth)

{

portraitMinWidth = width;

}

}

}

//不包含指标书签时,退出

if (!isExist)

return false;

}

//如果列宽小于一定宽度那么就将文档变为横向cellWidth

if (portraitMinWidth < ConvertUtil.MillimeterToPoint(cellWidth))

{

IsLandscape = true;

pageWidth = 150d;

}

else

{

IsLandscape = false;

pageWidth = 120d;

}

int i = 1;

foreach (Document docItem in docItemList)

{

builder.MoveToDocumentEnd();

// Document docItem = new Document(path);

PageSetup pageSet1 = docItem.Sections[0].PageSetup;

pageSet1.PaperSize = PaperSize.A4;

pageSet1.LeftMargin = ConvertUtil.MillimeterToPoint(20);

pageSet1.RightMargin = ConvertUtil.MillimeterToPoint(20);

var tableList = docItem.GetChildNodes(NodeType.Table, true);

foreach (Table table in tableList)

{

table.AutoFit(AutoFitBehavior.FixedColumnWidths);

foreach (Row row in table.Rows)

{

if (table.Range != null && table.Range.Bookmarks != null)

{

foreach (Bookmark bkName in table.Range.Bookmarks)

{

if (bkName.Name == "aa")

{

for (int j = 0; j < row.Cells.Count; j++)

{

row.Cells[j].CellFormat.WrapText = true;

double width = ConvertUtil.MillimeterToPoint((pageWidth) / row.Cells.Count);

row.Cells[j].CellFormat.Width = width;

}

break;

}

}

}

}

}

docItem.FirstSection.HeadersFooters.LinkToPrevious(true);

builder.InsertDocument(docItem, ImportFormatMode.UseDestinationStyles);

i++;

}

if (IsLandscape)

{

//文档变为横向

pageSet.Orientation = Aspose.Words.Orientation.Landscape;

}

//重新整理页面布局

doc.UpdatePageLayout();

doc.Save(filePath);

return true;

}

catch (Exception ex)

{

LogHelper.WriteLog("更新表格列宽异常,", ex);

return false;

}

}

相关推荐
SongYuLong的博客4 小时前
C# (定时器、线程)
开发语言·c#
百锦再5 小时前
详解基于C#开发Windows API的SendMessage方法的鼠标键盘消息发送
windows·c#·计算机外设
无敌最俊朗@7 小时前
unity3d————协程原理讲解
开发语言·学习·unity·c#·游戏引擎
程序设计实验室7 小时前
在网页上调起本机C#程序
c#
Crazy Struggle10 小时前
.NET 8 强大功能 IHostedService 与 BackgroundService 实战
c#·.net·.net core
fs哆哆10 小时前
C#编程:优化【性别和成绩名次】均衡分班
开发语言·c#
fathing11 小时前
c# 调用c++ 的dll 出现找不到函数入口点
开发语言·c++·c#
wyh要好好学习13 小时前
C# WPF 记录DataGrid的表头顺序,下次打开界面时应用到表格中
开发语言·c#·wpf
AitTech13 小时前
C#实现:电脑系统信息的全面获取与监控
开发语言·c#
咩咩觉主14 小时前
尽量通俗易懂地概述.Net && U nity跨语言/跨平台相关知识
unity·c#·.net·.netcore