彩票走势图

logo Aspose中文文档
文档彩票走势图>>Aspose中文文档>>自动调整表格设置

自动调整表格设置


Aspose.Words是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。

Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

 默认情况下,Aspose.Words 使用“自动适应窗口”插入一个新表格。表格的大小将适应页面上的可用宽度。要更改此类表或现有表的大小调整行为,您可以调用 Table.AutoFit方法。此方法接受 AutoFitBehavior 枚举,该枚举定义对表应用什么类型的自动调整。

以下代码示例显示如何使第一个表格自动适应页面宽度:


// Open the document.
Document doc = new Document("../../data/document.doc");
Table table = (Table)doc.GetChild(NodeType.Table, 0, true);

// Autofit the first table to the page width.
table.AutoFit(AutoFitBehavior.AutoFitToWindow);

// Save the document to disk.
doc.Save("TestFile.AutoFitToWindow Out.doc");

点击复制


运行代码


如需下载产品Aspose.Words ,请点击产品名进入下载页面

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP