文档彩票走势图>>Aspose中文文档>>更改整个文档的页面设置
更改整个文档的页面设置
Aspose.Words是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
页面设置是一组格式属性,存储在 Word 文档的每个部分中。Microsoft Word Automation 的 ActiveDocument.Range.PageSetup 是为文档的所有部分设置相同页面设置的“快捷方式”。Aspose.Words仅通过Section.PageSetup属性提供对各个部分的页面设置的访问,因此对页面设置的任何文档范围的更改都必须应用于所有部分。
VSTOstring mypath = "Document.docx"; Word.Application wordApp = Application; wordApp.Documents.Open(mypath); this.Application.ActiveDocument.Range(1,2).PageSetup.PaperSize = Word.WdPaperSize.wdPaperLetter;
点击复制
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");
点击复制