彩票走势图

Aspose.Words .NET之导入模式对比

原创|其它|编辑:郝浩|2012-09-18 11:57:57.000|阅读 822 次

概述:当我们复制一个文件的某些内容到另一个文件时,我们经常会对ImportFormat模式进行选择。ImportFormatMode.KeepSourceFormatting将保留在源文件中使用的原始格式的,而ImportFormatMode.UseDestinationStyles会使用在目标文档中定义的格式。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

当我们复制一个文件的某些内容到另一个文件时,我们经常会对Aspose.Words .NET 导入模式进行选择。

ImportFormatMode.KeepSourceFormatting将保留在源文件中使用的原始格式的,而ImportFormatMode.UseDestinationStyles会使用在目标文档中定义的格式。微软Word也在复制内容到另一个文件时,提供了此选项选择。

Aspose.Words .NET之ImportFormat模式对比

那么,Aspose.Words for .NET又是如何实现这两种模式的选择的呢?答案就在下面:

保留原格式的代码如下:

C#

 // Load the documents to join.
Document dstDoc = new Document(gDataDir + "TestFile.Destination.doc");
Document srcDoc =  new Document(gDataDir + "TestFile.Source.doc");

// Keep the formatting from the source document when appending it to the destination document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting);

// Save the joined document to disk.
dstDoc.Save(gDataDir + "TestFile.KeepSourceFormatting Out.docx");
 

Visual Basic

 ' Load the documents to join.
Dim dstDoc As New Document(gDataDir & "TestFile.Destination.doc")
Dim srcDoc As New Document(gDataDir & "TestFile.Source.doc")

' Keep the formatting from the source document when appending it to the destination document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting)

' Save the joined document to disk.
dstDoc.Save(gDataDir & "TestFile.KeepSourceFormatting Out.docx")

 运行以上代码后,目标文件不存在的格式也被复制过来了

Aspose.Words .NET之ImportFormat模式对比

而我们使用目标格式就不会有新的格式被创建,代码如下:

C#

 // Load the documents to join.
Document dstDoc = new Document(gDataDir + "TestFile.Destination.doc");
Document srcDoc =  new Document(gDataDir + "TestFile.Source.doc";);

// Append the source document using the styles of the destination document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.UseDestinationStyles);

// Save the joined document to disk.
dstDoc.Save(gDataDir + "TestFile.UseDestinationStyles Out.doc");
 

Visual Basic

 ' Load the documents to join.
Dim dstDoc As New Document(gDataDir & "TestFile.Destination.doc")
Dim srcDoc As New Document(gDataDir & "TestFile.Source.doc")

' Append the source document using the styles of the destination document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.UseDestinationStyles)

' Save the joined document to disk.
dstDoc.Save(gDataDir & "TestFile.UseDestinationStyles Out.doc")

 效果图如下:

Aspose.Words .NET之ImportFormat模式对比


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP