彩票走势图

logo Aspose中文文档
文档彩票走势图>>Aspose中文文档>>更改整个文档的页面设置

更改整个文档的页面设置


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

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

页面设置是一组格式属性,存储在 Word 文档的每个部分中。Microsoft Word Automation 的 ActiveDocument.Range.PageSetup 是为文档的所有部分设置相同页面设置的“快捷方式”。Aspose.Words仅通过Section.PageSetup属性提供对各个部分的页面设置的访问,因此对页面设置的任何文档范围的更改都必须应用于所有部分。

Aspose.Words for .NET 最新下载

VSTO
string mypath = "Document.docx";
Word.Application wordApp = Application;
wordApp.Documents.Open(mypath);
this.Application.ActiveDocument.Range(1,2).PageSetup.PaperSize = Word.WdPaperSize.wdPaperLetter;

点击复制

Aspose.Words
Document doc = new Document( "Section.ModifyPageSetupInAllSections.doc");

// It is important to understand that a document can contain many sections and each

// section has its own page setup. In this case we want to modify them all.
foreach (Section section in doc)
section.PageSetup.PaperSize = PaperSize.Letter;
doc.Save( "Section.ModifyPageSetupInAllSections Out.doc");

点击复制

下载示例代码
  •  
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP