实例介绍
Aspose Words for c# 官方源码实例
【实例截图】
【核心代码】
ae6988f1-ad39-4042-90b6-32c8c2fafd1a
└── Aspose_Words_NET-master
├── Examples
│ ├── Aspose.Words.Examples.CS.2008.sln
│ ├── Aspose.Words.Examples.CS.2010.sln
│ ├── Aspose.Words.Examples.CS.Mono.sln
│ ├── Aspose.Words Examples.csproj
│ ├── Aspose.Words ExamplesMono.csproj
│ ├── Aspose.Words ExamplesMono.vbproj
│ ├── Aspose.Words.Examples.VB.2008.sln
│ ├── Aspose.Words.Examples.VB.2010.sln
│ ├── Aspose.Words.Examples.VB.Mono.sln
│ ├── Aspose.Words Examples.vbproj
│ ├── Examples.xml
│ ├── Helpers
│ │ ├── Helpers.dll
│ │ ├── nunit.framework.dll
│ │ └── UnitTesting.dll
│ ├── LoadingAndSaving
│ │ ├── CheckFormat
│ │ │ ├── CSharp
│ │ │ │ ├── CheckFormat.2008.sln
│ │ │ │ ├── CheckFormat.2010.sln
│ │ │ │ ├── CheckFormat.csproj
│ │ │ │ ├── CheckFormat.sln
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── Test File (doc).doc
│ │ │ │ ├── Test File (docm).docm
│ │ │ │ ├── Test File (docx).docx
│ │ │ │ ├── Test File (dot).dot
│ │ │ │ ├── Test File (dotx).dotx
│ │ │ │ ├── Test File (enc).doc
│ │ │ │ ├── Test File (enc).docx
│ │ │ │ ├── Test File (HTML).html
│ │ │ │ ├── Test File (JPG).jpg
│ │ │ │ ├── Test File (MHTML).mhtml
│ │ │ │ ├── Test File (odt).odt
│ │ │ │ ├── Test File (pre97).doc
│ │ │ │ ├── Test File (rtf).rtf
│ │ │ │ ├── Test File (WordML).xml
│ │ │ │ └── Test File (XML).xml
│ │ │ └── VisualBasic
│ │ │ ├── CheckFormat.2008.sln
│ │ │ ├── CheckFormat.2010.sln
│ │ │ ├── CheckFormat.vbproj
│ │ │ └── Program.vb
│ │ ├── Excel2Word
│ │ │ ├── CSharp
│ │ │ │ ├── ConverterXls2Doc.cs
│ │ │ │ ├── Excel2Word.2008.sln
│ │ │ │ ├── Excel2Word.2010.sln
│ │ │ │ ├── Excel2WordConverter.xls
│ │ │ │ ├── Excel2Word.csproj
│ │ │ │ ├── MainForm.cs
│ │ │ │ ├── MainForm.Designer.cs
│ │ │ │ └── MainForm.resx
│ │ │ ├── Data
│ │ │ │ ├── +2008 calendar1.xls
│ │ │ │ ├── +-4011.xls
│ │ │ │ ├── +Expense budget1.xls
│ │ │ │ ├── +Expense report1.xls
│ │ │ │ ├── +Five-day event schedule1.xls
│ │ │ │ ├── +Generic staff paper1.xls
│ │ │ │ ├── +House cleaning checklist1.xls
│ │ │ │ ├── +Marketing budget plan1.xls
│ │ │ │ ├── +Marketing tactical plan1.xls
│ │ │ │ ├── +Personal budget1.xls
│ │ │ │ ├── Personal budget1.xls
│ │ │ │ ├── +Personal monthly budget1.xls
│ │ │ │ ├── +Pet-sitting invoice1.xls
│ │ │ │ ├── +PivotTable report position recall1.xls
│ │ │ │ ├── Sales order1.xls
│ │ │ │ ├── Secret Santa gift exchange list1.xls
│ │ │ │ ├── +testChart.xls
│ │ │ │ ├── _testDrawing.xls
│ │ │ │ ├── +testMergedCells.xls
│ │ │ │ ├── +Travel service invoice1.xls
│ │ │ │ ├── Travel service invoice1.xls
│ │ │ │ └── Weekly time sheet1.xls
│ │ │ └── VisualBasic
│ │ │ ├── ConverterXls2Doc.vb
│ │ │ ├── Excel2Word.2008.sln
│ │ │ ├── Excel2Word.2010.sln
│ │ │ ├── Excel2Word.vbproj
│ │ │ ├── MainForm.Designer.vb
│ │ │ ├── MainForm.resx
│ │ │ └── MainForm.vb
│ │ ├── LoadingAndSavingExamples.cs
│ │ ├── LoadingAndSavingExamples.vb
│ │ ├── LoadingAndSavingHTML
│ │ │ ├── LoadingAndSavingHtmlExamples.cs
│ │ │ ├── LoadingAndSavingHtmlExamples.vb
│ │ │ ├── SaveHtmlAndEmail
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── MainForm.cs
│ │ │ │ │ ├── MainForm.Designer.cs
│ │ │ │ │ ├── MainForm.resx
│ │ │ │ │ ├── SaveHtmlAndEmail.2008.sln
│ │ │ │ │ ├── SaveHtmlAndEmail.2010.sln
│ │ │ │ │ └── SaveHtmlAndEmail.csproj
│ │ │ │ └── VisualBasic
│ │ │ │ ├── MainForm.Designer.vb
│ │ │ │ ├── MainForm.resx
│ │ │ │ ├── MainForm.vb
│ │ │ │ ├── Program.vb
│ │ │ │ ├── SaveHtmlAndEmail.2008.sln
│ │ │ │ ├── SaveHtmlAndEmail.2010.sln
│ │ │ │ └── SaveHtmlAndEmail.vbproj
│ │ │ ├── SaveMhtmlAndEmail
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── SaveMhtmlAndEmail.2008.sln
│ │ │ │ │ ├── SaveMhtmlAndEmail.2010.sln
│ │ │ │ │ └── SaveMhtmlAndEmail.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── DinnerInvitationDemo.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Program.vb
│ │ │ │ ├── SaveMhtmlAndEmail.2008.sln
│ │ │ │ ├── SaveMhtmlAndEmail.2010.sln
│ │ │ │ └── SaveMhtmlAndEmail.vbproj
│ │ │ ├── SplitIntoHtmlPages
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── SplitIntoHtmlPages.2008.sln
│ │ │ │ │ ├── SplitIntoHtmlPages.2010.sln
│ │ │ │ │ ├── SplitIntoHtmlPages.csproj
│ │ │ │ │ ├── TocMailMergeDataSource.cs
│ │ │ │ │ ├── Topic.cs
│ │ │ │ │ └── Worker.cs
│ │ │ │ ├── Data
│ │ │ │ │ ├── SOI 2007-2012-DeeM with footnote added.doc
│ │ │ │ │ └── TocTemplate.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Program.vb
│ │ │ │ ├── SplitIntoHtmlPages.2008.sln
│ │ │ │ ├── SplitIntoHtmlPages.2010.sln
│ │ │ │ ├── SplitIntoHtmlPages.vbproj
│ │ │ │ ├── TocMailMergeDataSource.vb
│ │ │ │ ├── Topic.vb
│ │ │ │ └── Worker.vb
│ │ │ └── Word2Help
│ │ │ ├── CSharp
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Hyperlink.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── RegularExpressions.cs
│ │ │ │ ├── Starter.cs
│ │ │ │ ├── TopicCollection.cs
│ │ │ │ ├── Topic.cs
│ │ │ │ ├── Word2Help.2008.sln
│ │ │ │ ├── Word2Help.2010.sln
│ │ │ │ └── Word2Help.csproj
│ │ │ ├── Data
│ │ │ │ ├── banner.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── header.html
│ │ │ │ └── Sample Documentation.doc
│ │ │ └── VisualBasic
│ │ │ ├── AssemblyInfo.vb
│ │ │ ├── Hyperlink.vb
│ │ │ ├── Program.vb
│ │ │ ├── RegularExpressions.vb
│ │ │ ├── Starter.vb
│ │ │ ├── TopicCollection.vb
│ │ │ ├── Topic.vb
│ │ │ ├── Word2Help.2008.sln
│ │ │ ├── Word2Help.2010.sln
│ │ │ └── Word2Help.vbproj
│ │ ├── LoadingAndSavingTxt
│ │ │ ├── LoadingAndSavingTxtExamples.cs
│ │ │ ├── LoadingAndSavingTxtExamples.vb
│ │ │ └── LoadTxt
│ │ │ ├── CSharp
│ │ │ │ ├── LoadTxt.2008.sln
│ │ │ │ ├── LoadTxt.2010.sln
│ │ │ │ ├── LoadTxt.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── LoadTxt.txt
│ │ │ └── VisualBasic
│ │ │ ├── Data
│ │ │ │ └── LoadTxt.txt
│ │ │ ├── LoadTxt.2008.sln
│ │ │ ├── LoadTxt.2010.sln
│ │ │ ├── LoadTxt.vbproj
│ │ │ └── Program.vb
│ │ ├── PageSplitter
│ │ │ ├── CSharp
│ │ │ │ ├── DocumentPageSplitter.cs
│ │ │ │ ├── PageNumberFinder.cs
│ │ │ │ ├── PageSplitter.2008.sln
│ │ │ │ ├── PageSplitter.2010.sln
│ │ │ │ ├── PageSplitter.csproj
│ │ │ │ ├── PageSplitter.sln
│ │ │ │ ├── Program.cs
│ │ │ │ └── SectionSplitter.cs
│ │ │ ├── Data
│ │ │ │ ├── Rendering.doc
│ │ │ │ └── Sample Documentation.doc
│ │ │ └── VisualBasic
│ │ │ ├── DocumentPageSplitter.vb
│ │ │ ├── PageNumberFinder.vb
│ │ │ ├── PageSplitter.2008.sln
│ │ │ ├── PageSplitter.2010.sln
│ │ │ ├── PageSplitter.vbproj
│ │ │ ├── Program.vb
│ │ │ └── SectionSplitter.vb
│ │ └── SavingToPdfFormat
│ │ ├── ImageToPdf
│ │ │ ├── CSharp
│ │ │ │ ├── ImageToPdf.2008.sln
│ │ │ │ ├── ImageToPdf.2010.sln
│ │ │ │ ├── ImageToPdf.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── Test.gif
│ │ │ │ ├── Test.jpg
│ │ │ │ ├── Test.png
│ │ │ │ ├── Test.tiff
│ │ │ │ └── Test.wmf
│ │ │ └── VisualBasic
│ │ │ ├── ImageToPdf.2008.sln
│ │ │ ├── ImageToPdf.2010.sln
│ │ │ ├── ImageToPdf.vbproj
│ │ │ └── Program.vb
│ │ ├── SavingToPdfFormatExamples.cs
│ │ └── SavingToPdfFormatExamples.vb
│ ├── MailMergeAndReporting
│ │ ├── ApplyCustomLogicToEmptyRegions
│ │ │ ├── CSharp
│ │ │ │ ├── ApplyCustomLogicToEmptyRegions.2008.sln
│ │ │ │ ├── ApplyCustomLogicToEmptyRegions.2010.sln
│ │ │ │ ├── ApplyCustomLogicToEmptyRegions.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── TestFile.doc
│ │ │ └── VisualBasic
│ │ │ ├── ApplyCustomLogicToEmptyRegions.2008.sln
│ │ │ ├── ApplyCustomLogicToEmptyRegions.2010.sln
│ │ │ ├── ApplyCustomLogicToEmptyRegions.vbproj
│ │ │ └── Program.vb
│ │ ├── LINQtoXMLMailMerge
│ │ │ ├── CSharp
│ │ │ │ ├── LINQtoXMLMailMerge.2008.sln
│ │ │ │ ├── LINQtoXMLMailMerge.2010.sln
│ │ │ │ ├── LINQtoXMLMailMerge.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── PurchaseOrder.xml
│ │ │ │ └── TestFile.doc
│ │ │ └── VisualBasic
│ │ │ ├── Data
│ │ │ │ ├── PurchaseOrder.xml
│ │ │ │ └── TestFile.doc
│ │ │ ├── LINQtoXMLMailMerge.2008.sln
│ │ │ ├── LINQtoXMLMailMerge.2010.sln
│ │ │ ├── LINQtoXMLMailMerge.vbproj
│ │ │ └── Program.vb
│ │ ├── MailMergeAndReportingExamples.cs
│ │ ├── MailMergeAndReportingExamples.vb
│ │ ├── MailMergeFormFields
│ │ │ ├── CSharp
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── MailMergeFormFields.2008.sln
│ │ │ │ ├── MailMergeFormFields.2010.sln
│ │ │ │ ├── MailMergeFormFields.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── Template.doc
│ │ │ └── VisualBasic
│ │ │ ├── AssemblyInfo.vb
│ │ │ ├── MailMergeFormFields.2008.sln
│ │ │ ├── MailMergeFormFields.2010.sln
│ │ │ ├── MailMergeFormFields.vbproj
│ │ │ └── Program.vb
│ │ ├── MultipleDocsInMailMerge
│ │ │ ├── CSharp
│ │ │ │ ├── MultipleDocsInMailMerge.2008.sln
│ │ │ │ ├── MultipleDocsInMailMerge.2010.sln
│ │ │ │ ├── MultipleDocsInMailMerge.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── Customers.mdb
│ │ │ │ └── TestFile.doc
│ │ │ └── VisualBasic
│ │ │ ├── MultipleDocsInMailMerge.2008.sln
│ │ │ ├── MultipleDocsInMailMerge.2010.sln
│ │ │ ├── MultipleDocsInMailMerge.vbproj
│ │ │ └── Program.vb
│ │ ├── MustacheTemplateSyntax
│ │ │ ├── CSharp
│ │ │ │ ├── MustacheTemplateSyntax.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── ExecuteTemplate.doc
│ │ │ │ ├── Orders.xml
│ │ │ │ └── Output.doc
│ │ │ └── VisualBasic
│ │ │ ├── MustacheTemplateSyntax.vbproj
│ │ │ └── Program.vb
│ │ ├── NestedMailMerge
│ │ │ ├── CSharp
│ │ │ │ ├── NestedMailMerge.2008.sln
│ │ │ │ ├── NestedMailMerge.2010.sln
│ │ │ │ ├── NestedMailMerge.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── CustomerData.xml
│ │ │ │ ├── Invoice Template.doc
│ │ │ │ └── OrdersSchema.xsd
│ │ │ └── VisualBasic
│ │ │ ├── Data
│ │ │ │ ├── CustomerData.xml
│ │ │ │ ├── Invoice Template.doc
│ │ │ │ └── OrdersSchema.xsd
│ │ │ ├── NestedMailMerge.2008.sln
│ │ │ ├── NestedMailMerge.2010.sln
│ │ │ ├── NestedMailMerge.vbproj
│ │ │ └── Program.vb
│ │ ├── RemoveEmptyRegions
│ │ │ ├── CSharp
│ │ │ │ ├── Program.cs
│ │ │ │ ├── RemoveEmptyRegions.2008.sln
│ │ │ │ ├── RemoveEmptyRegions.2010.sln
│ │ │ │ └── RemoveEmptyRegions.csproj
│ │ │ ├── Data
│ │ │ │ └── TestFile.doc
│ │ │ └── VisualBasic
│ │ │ ├── Program.vb
│ │ │ ├── RemoveEmptyRegions.2008.sln
│ │ │ ├── RemoveEmptyRegions.2010.sln
│ │ │ └── RemoveEmptyRegions.vbproj
│ │ └── XMLMailMerge
│ │ ├── CSharp
│ │ │ ├── Program.cs
│ │ │ ├── XMLMailMerge.2008.sln
│ │ │ ├── XMLMailMerge.2010.sln
│ │ │ └── XMLMailMerge.csproj
│ │ ├── Data
│ │ │ ├── Customers.xml
│ │ │ └── TestFile.doc
│ │ └── VisualBasic
│ │ ├── Data
│ │ │ ├── Customers.xml
│ │ │ └── TestFile.doc
│ │ ├── Program.vb
│ │ ├── XMLMailMerge.2008.sln
│ │ ├── XMLMailMerge.2010.sln
│ │ └── XMLMailMerge.vbproj
│ ├── ProgrammingWithDocuments
│ │ ├── JoiningAndAppending
│ │ │ ├── AppendDocument
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── AppendDocument.2008.sln
│ │ │ │ │ ├── AppendDocument.2010.sln
│ │ │ │ │ ├── AppendDocument.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ ├── TestFile.Destination.doc
│ │ │ │ │ ├── TestFile.DestinationList.doc
│ │ │ │ │ ├── TestFile.Source.doc
│ │ │ │ │ ├── TestFile.SourceList.doc
│ │ │ │ │ └── TestFile.SourcePageSetup.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── AppendDocument.2008.sln
│ │ │ │ ├── AppendDocument.2010.sln
│ │ │ │ ├── AppendDocument.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── JoiningAndAppendingExamples.cs
│ │ │ └── JoiningAndAppendingExamples.vb
│ │ ├── UsingFindAndReplace
│ │ │ ├── FindAndHighlight
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── FindAndHighlight.2008.sln
│ │ │ │ │ ├── FindAndHighlight.2010.sln
│ │ │ │ │ ├── FindAndHighlight.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── FindAndHighlight.2008.sln
│ │ │ │ ├── FindAndHighlight.2010.sln
│ │ │ │ ├── FindAndHighlight.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── ReplaceTextWithField
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── ReplaceTextWithField.2008.sln
│ │ │ │ │ ├── ReplaceTextWithField.2010.sln
│ │ │ │ │ └── ReplaceTextWithField.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── Field.ReplaceTextWithFields.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Program.vb
│ │ │ │ ├── ReplaceTextWithField.2008.sln
│ │ │ │ ├── ReplaceTextWithField.2010.sln
│ │ │ │ └── ReplaceTextWithField.vbproj
│ │ │ ├── UsingFindAndReplaceExamples.cs
│ │ │ └── UsingFindAndReplaceExamples.vb
│ │ ├── WorkingWithBookmarks
│ │ │ ├── CopyBookmarkedText
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── CopyBookmarkedText.2008.sln
│ │ │ │ │ ├── CopyBookmarkedText.2010.sln
│ │ │ │ │ ├── CopyBookmarkedText.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── Template.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── CopyBookmarkedText.2008.sln
│ │ │ │ ├── CopyBookmarkedText.2010.sln
│ │ │ │ ├── CopyBookmarkedText.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── UntangleRowBookmarks
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── UntangleRowBookmarks.2008.sln
│ │ │ │ │ ├── UntangleRowBookmarks.2010.sln
│ │ │ │ │ └── UntangleRowBookmarks.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── TestDefect1352.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── Program.vb
│ │ │ │ ├── UntangleRowBookmarks.2008.sln
│ │ │ │ ├── UntangleRowBookmarks.2010.sln
│ │ │ │ └── UntangleRowBookmarks.vbproj
│ │ │ ├── WorkingWithBookmarksExamples.cs
│ │ │ └── WorkingWithBookmarksExamples.vb
│ │ ├── WorkingWithComments
│ │ │ ├── ProcessComments
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── ProcessComments.2008.sln
│ │ │ │ │ ├── ProcessComments.2010.sln
│ │ │ │ │ ├── ProcessComments.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── ProcessComments.2008.sln
│ │ │ │ ├── ProcessComments.2010.sln
│ │ │ │ ├── ProcessComments.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── WorkingWithCommentsExamples.cs
│ │ │ └── WorkingWithCommentsExamples.vb
│ │ ├── WorkingWithDocument
│ │ │ ├── DocumentInDB
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── DocumentInDB.2008.sln
│ │ │ │ │ ├── DocumentInDB.2010.sln
│ │ │ │ │ ├── DocumentInDB.csproj
│ │ │ │ │ ├── MainForm.cs
│ │ │ │ │ ├── MainForm.Designer.cs
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ ├── DocDB.mdb
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── DocumentInDB.2008.sln
│ │ │ │ ├── DocumentInDB.2010.sln
│ │ │ │ ├── DocumentInDB.vbproj
│ │ │ │ ├── MainForm.Designer.vb
│ │ │ │ ├── MainForm.vb
│ │ │ │ └── Program.vb
│ │ │ ├── ExtractContent
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── ExtractContent.2008.sln
│ │ │ │ │ ├── ExtractContent.2010.sln
│ │ │ │ │ ├── ExtractContent.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── ExtractContent.2008.sln
│ │ │ │ ├── ExtractContent.2010.sln
│ │ │ │ ├── ExtractContent.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── PageNumbersOfNodes
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── PageNumbersOfNodes.2008.sln
│ │ │ │ │ ├── PageNumbersOfNodes.2010.sln
│ │ │ │ │ ├── PageNumbersOfNodes.csproj
│ │ │ │ │ ├── PageNumbersOfNodes.sln
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.docx
│ │ │ │ └── VisualBasic
│ │ │ │ ├── PageNumbersOfNodes.2008.sln
│ │ │ │ ├── PageNumbersOfNodes.2010.sln
│ │ │ │ ├── PageNumbersOfNodes.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── RemoveBreaks
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── RemoveBreaks.2008.sln
│ │ │ │ │ ├── RemoveBreaks.2010.sln
│ │ │ │ │ └── RemoveBreaks.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ ├── Program.vb
│ │ │ │ ├── RemoveBreaks.2008.sln
│ │ │ │ ├── RemoveBreaks.2010.sln
│ │ │ │ └── RemoveBreaks.vbproj
│ │ │ ├── WorkingWithDocumentExamples.cs
│ │ │ └── WorkingWithDocumentExamples.vb
│ │ ├── WorkingWithFields
│ │ │ ├── InsertNestedFields
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── InsertNestedFields.2008.sln
│ │ │ │ │ ├── InsertNestedFields.2010.sln
│ │ │ │ │ ├── InsertNestedFields.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ └── VisualBasic
│ │ │ │ ├── InsertNestedFields.2008.sln
│ │ │ │ ├── InsertNestedFields.2010.sln
│ │ │ │ ├── InsertNestedFields.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── RemoveField
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── RemoveField.2008.sln
│ │ │ │ │ ├── RemoveField.2010.sln
│ │ │ │ │ └── RemoveField.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── Field.RemoveField.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Program.vb
│ │ │ │ ├── RemoveField.2008.sln
│ │ │ │ ├── RemoveField.2010.sln
│ │ │ │ └── RemoveField.vbproj
│ │ │ ├── ReplaceFieldsWithStaticText
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── ReplaceFieldsWithStaticText.2008.sln
│ │ │ │ │ ├── ReplaceFieldsWithStaticText.2010.sln
│ │ │ │ │ └── ReplaceFieldsWithStaticText.csproj
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── Program.vb
│ │ │ │ ├── ReplaceFieldsWithStaticText.2008.sln
│ │ │ │ ├── ReplaceFieldsWithStaticText.2010.sln
│ │ │ │ └── ReplaceFieldsWithStaticText.vbproj
│ │ │ ├── WorkingWithFieldsExamples.cs
│ │ │ └── WorkingWithFieldsExamples.vb
│ │ ├── WorkingWithImages
│ │ │ ├── AddImageToEachPage
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── AddImageToEachPage.2008.sln
│ │ │ │ │ ├── AddImageToEachPage.2010.sln
│ │ │ │ │ ├── AddImageToEachPage.csproj
│ │ │ │ │ ├── AddImageToEachPage.sln
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ ├── Aspose Logo.png
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── AddImageToEachPage.2008.sln
│ │ │ │ ├── AddImageToEachPage.2010.sln
│ │ │ │ ├── AddImageToEachPage.vbproj
│ │ │ │ ├── Data
│ │ │ │ │ ├── Aspose Logo.png
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── Program.vb
│ │ │ ├── AddWatermark
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── AddWatermark.2008.sln
│ │ │ │ │ ├── AddWatermark.2010.sln
│ │ │ │ │ ├── AddWatermark.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── AddWatermark.2008.sln
│ │ │ │ ├── AddWatermark.2010.sln
│ │ │ │ ├── AddWatermark.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── CompressImages
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── CompressImages.2008.sln
│ │ │ │ │ ├── CompressImages.2010.sln
│ │ │ │ │ ├── CompressImages.csproj
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ └── Resampler.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── Test.docx
│ │ │ │ └── VisualBasic
│ │ │ │ ├── CompressImages.2008.sln
│ │ │ │ ├── CompressImages.2010.sln
│ │ │ │ ├── CompressImages.vbproj
│ │ │ │ ├── Program.vb
│ │ │ │ └── Resampler.vb
│ │ │ ├── WorkingWithImagesExamples.cs
│ │ │ └── WorkingWithImagesExamples.vb
│ │ ├── WorkingWithStyles
│ │ │ ├── ExtractContentBasedOnStyles
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── ExtractContentBasedOnStyles.2008.sln
│ │ │ │ │ ├── ExtractContentBasedOnStyles.2010.sln
│ │ │ │ │ ├── ExtractContentBasedOnStyles.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── ExtractContentBasedOnStyles.2008.sln
│ │ │ │ ├── ExtractContentBasedOnStyles.2010.sln
│ │ │ │ ├── ExtractContentBasedOnStyles.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── WorkingWithStylesExamples.cs
│ │ │ └── WorkingWithStylesExamples.vb
│ │ └── WorkingWithTables
│ │ ├── AutoFitTables
│ │ │ ├── CSharp
│ │ │ │ ├── AutoFitTables.2008.sln
│ │ │ │ ├── AutoFitTables.2010.sln
│ │ │ │ ├── AutoFitTables.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── TestFile.doc
│ │ │ └── VisualBasic
│ │ │ ├── AutoFitTables.2008.sln
│ │ │ ├── AutoFitTables.2010.sln
│ │ │ ├── AutoFitTables.vbproj
│ │ │ └── Program.vb
│ │ ├── ImportTableFromDataTable
│ │ │ ├── CSharp
│ │ │ │ ├── ImportTableFromDataTable.2008.sln
│ │ │ │ ├── ImportTableFromDataTable.2010.sln
│ │ │ │ ├── ImportTableFromDataTable.csproj
│ │ │ │ └── Program.cs
│ │ │ └── VisualBasic
│ │ │ ├── ImportTableFromDataTable.2008.sln
│ │ │ ├── ImportTableFromDataTable.2010.sln
│ │ │ ├── ImportTableFromDataTable.vbproj
│ │ │ └── Program.vb
│ │ ├── WorkingWithTablesExamples.cs
│ │ └── WorkingWithTablesExamples.vb
│ ├── QuickStart
│ │ ├── AppendDocuments
│ │ │ ├── CSharp
│ │ │ │ ├── AppendDocuments.2008.sln
│ │ │ │ ├── AppendDocuments.2010.sln
│ │ │ │ ├── AppendDocuments.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ ├── TestFile.Destination.doc
│ │ │ │ └── TestFile.Source.doc
│ │ │ └── VisualBasic
│ │ │ ├── AppendDocuments.2008.sln
│ │ │ ├── AppendDocuments.2010.sln
│ │ │ ├── AppendDocuments.vbproj
│ │ │ └── Program.vb
│ │ ├── ApplyLicense
│ │ │ ├── CSharp
│ │ │ │ ├── ApplyLicense.2008.sln
│ │ │ │ ├── ApplyLicense.2010.sln
│ │ │ │ ├── ApplyLicense.csproj
│ │ │ │ └── Program.cs
│ │ │ └── VisualBasic
│ │ │ ├── ApplyLicense.2008.sln
│ │ │ ├── ApplyLicense.2010.sln
│ │ │ ├── ApplyLicense.vbproj
│ │ │ └── Program.vb
│ │ ├── Doc2Pdf
│ │ │ ├── CSharp
│ │ │ │ ├── Doc2Pdf.2008.sln
│ │ │ │ ├── Doc2Pdf.2010.sln
│ │ │ │ ├── Doc2Pdf.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── Template.doc
│ │ │ └── VisualBasic
│ │ │ ├── Doc2Pdf.2008.sln
│ │ │ ├── Doc2Pdf.2010.sln
│ │ │ ├── Doc2Pdf.vbproj
│ │ │ └── Program.vb
│ │ ├── FindAndReplace
│ │ │ ├── CSharp
│ │ │ │ ├── FindAndReplace.2008.sln
│ │ │ │ ├── FindAndReplace.2010.sln
│ │ │ │ ├── FindAndReplace.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── ReplaceSimple.doc
│ │ │ └── VisualBasic
│ │ │ ├── FindAndReplace.2008.sln
│ │ │ ├── FindAndReplace.2010.sln
│ │ │ ├── FindAndReplace.vbproj
│ │ │ └── Program.vb
│ │ ├── HelloWorld
│ │ │ ├── CSharp
│ │ │ │ ├── HelloWorld.2008.sln
│ │ │ │ ├── HelloWorld.2010.sln
│ │ │ │ ├── HelloWorld.csproj
│ │ │ │ └── Program.cs
│ │ │ └── VisualBasic
│ │ │ ├── HelloWorld.2008.sln
│ │ │ ├── HelloWorld.2010.sln
│ │ │ ├── HelloWorld.vbproj
│ │ │ └── Program.vb
│ │ ├── LoadAndSaveToDisk
│ │ │ ├── CSharp
│ │ │ │ ├── LoadAndSaveToDisk.2008.sln
│ │ │ │ ├── LoadAndSaveToDisk.2010.sln
│ │ │ │ ├── LoadAndSaveToDisk.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── Document.doc
│ │ │ └── VisualBasic
│ │ │ ├── LoadAndSaveToDisk.2008.sln
│ │ │ ├── LoadAndSaveToDisk.2010.sln
│ │ │ ├── LoadAndSaveToDisk.vbproj
│ │ │ └── Program.vb
│ │ ├── LoadAndSaveToStream
│ │ │ ├── CSharp
│ │ │ │ ├── LoadAndSaveToStream.2008.sln
│ │ │ │ ├── LoadAndSaveToStream.2010.sln
│ │ │ │ ├── LoadAndSaveToStream.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── Document.doc
│ │ │ └── VisualBasic
│ │ │ ├── LoadAndSaveToStream.2008.sln
│ │ │ ├── LoadAndSaveToStream.2010.sln
│ │ │ ├── LoadAndSaveToStream.vbproj
│ │ │ └── Program.vb
│ │ ├── QuickStartExamples.cs
│ │ ├── QuickStartExamples.vb
│ │ ├── SimpleMailMerge
│ │ │ ├── CSharp
│ │ │ │ ├── Program.cs
│ │ │ │ ├── SimpleMailMerge.2008.sln
│ │ │ │ ├── SimpleMailMerge.2010.sln
│ │ │ │ └── SimpleMailMerge.csproj
│ │ │ ├── Data
│ │ │ │ └── Template.doc
│ │ │ └── VisualBasic
│ │ │ ├── Program.vb
│ │ │ ├── SimpleMailMerge.2008.sln
│ │ │ ├── SimpleMailMerge.2010.sln
│ │ │ └── SimpleMailMerge.vbproj
│ │ ├── UpdateFields
│ │ │ ├── CSharp
│ │ │ │ ├── Program.cs
│ │ │ │ ├── UpdateFields.2008.sln
│ │ │ │ ├── UpdateFields.2010.sln
│ │ │ │ └── UpdateFields.csproj
│ │ │ └── VisualBasic
│ │ │ ├── Program.vb
│ │ │ ├── UpdateFields.2008.sln
│ │ │ ├── UpdateFields.2010.sln
│ │ │ └── UpdateFields.vbproj
│ │ └── WorkingWithNodes
│ │ ├── CSharp
│ │ │ ├── Program.cs
│ │ │ ├── WorkingWithNodes.2008.sln
│ │ │ ├── WorkingWithNodes.2010.sln
│ │ │ └── WorkingWithNodes.csproj
│ │ └── VisualBasic
│ │ ├── Program.vb
│ │ ├── WorkingWithNodes.2008.sln
│ │ ├── WorkingWithNodes.2010.sln
│ │ └── WorkingWithNodes.vbproj
│ ├── README.md
│ ├── readme.txt
│ ├── RenderingAndPrinting
│ │ ├── DocumentLayoutHelper
│ │ │ ├── CSharp
│ │ │ │ ├── DocumentLayoutHelper.2008.sln
│ │ │ │ ├── DocumentLayoutHelper.2010.sln
│ │ │ │ ├── DocumentLayoutHelper.csproj
│ │ │ │ ├── DocumentLayoutHelper.sln
│ │ │ │ ├── LayoutEntities.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── RenderedDocument.cs
│ │ │ ├── Data
│ │ │ │ ├── doc+2.doc
│ │ │ │ └── TestFile.docx
│ │ │ └── VisualBasic
│ │ │ ├── DocumentLayoutHelper.2008.sln
│ │ │ ├── DocumentLayoutHelper.2010.sln
│ │ │ ├── DocumentLayoutHelper.vbproj
│ │ │ ├── LayoutEntities.vb
│ │ │ ├── Program.vb
│ │ │ └── RenderedDocument.vb
│ │ ├── EnumerateLayoutElements
│ │ │ ├── CSharp
│ │ │ │ ├── EnumerateLayoutElements.2008.sln
│ │ │ │ ├── EnumerateLayoutElements.2010.sln
│ │ │ │ ├── EnumerateLayoutElements.csproj
│ │ │ │ ├── EnumerateLayoutElements.sln
│ │ │ │ ├── LayoutInfoWriter.cs
│ │ │ │ ├── OutlineLayoutEntitiesRenderer.cs
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── TestFile.docx
│ │ │ └── VisualBasic
│ │ │ ├── Data
│ │ │ │ └── TestFile.docx
│ │ │ ├── EnumerateLayoutElements.2008.sln
│ │ │ ├── EnumerateLayoutElements.2010.sln
│ │ │ ├── EnumerateLayoutElements.vbproj
│ │ │ ├── LayoutInfoWriter.vb
│ │ │ ├── OutlineLayoutEntitiesRenderer.vb
│ │ │ └── Program.vb
│ │ ├── PrintDocument
│ │ │ ├── DocumentPreviewAndPrint
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── DocumentPreviewAndPrint.2008.sln
│ │ │ │ │ ├── DocumentPreviewAndPrint.2010.sln
│ │ │ │ │ ├── DocumentPreviewAndPrint.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── DocumentPreviewAndPrint.2008.sln
│ │ │ │ ├── DocumentPreviewAndPrint.2010.sln
│ │ │ │ ├── DocumentPreviewAndPrint.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── MultiplePagesOnSheet
│ │ │ │ ├── CSharp
│ │ │ │ │ ├── MultiplePagesOnSheet.2008.sln
│ │ │ │ │ ├── MultiplePagesOnSheet.2010.sln
│ │ │ │ │ ├── MultiplePagesOnSheet.csproj
│ │ │ │ │ └── Program.cs
│ │ │ │ ├── Data
│ │ │ │ │ └── TestFile.doc
│ │ │ │ └── VisualBasic
│ │ │ │ ├── MultiplePagesOnSheet.2008.sln
│ │ │ │ ├── MultiplePagesOnSheet.2010.sln
│ │ │ │ ├── MultiplePagesOnSheet.vbproj
│ │ │ │ └── Program.vb
│ │ │ ├── PrintDocumentExamples.cs
│ │ │ ├── PrintDocumentExamples.vb
│ │ │ └── XpsPrint
│ │ │ ├── CSharp
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── XpsPrint.2008.sln
│ │ │ │ ├── XpsPrint.2010.sln
│ │ │ │ ├── XpsPrint.csproj
│ │ │ │ └── XpsPrintHelper.cs
│ │ │ ├── Data
│ │ │ │ └── SampleDocument.doc
│ │ │ └── VisualBasic
│ │ │ ├── AssemblyInfo.vb
│ │ │ ├── Program.vb
│ │ │ ├── XpsPrint.2008.sln
│ │ │ ├── XpsPrint.2010.sln
│ │ │ ├── XpsPrintHelper.vb
│ │ │ └── XpsPrint.vbproj
│ │ ├── RenderingAndPrintingExamples.cs
│ │ ├── RenderingAndPrintingExamples.vb
│ │ └── RenderingToImage
│ │ ├── ImageColorFilters
│ │ │ ├── CSharp
│ │ │ │ ├── ImageColorFilters.2008.sln
│ │ │ │ ├── ImageColorFilters.2010.sln
│ │ │ │ ├── ImageColorFilters.csproj
│ │ │ │ └── Program.cs
│ │ │ ├── Data
│ │ │ │ └── TestFile.docx
│ │ │ └── VisualBasic
│ │ │ ├── ImageColorFilters.2008.sln
│ │ │ ├── ImageColorFilters.2010.sln
│ │ │ ├── ImageColorFilters.vbproj
│ │ │ └── Program.vb
│ │ ├── RenderingToImageExamples.cs
│ │ ├── RenderingToImageExamples.vb
│ │ ├── RenderShapes
│ │ │ ├── CSharp
│ │ │ │ ├── Program.cs
│ │ │ │ ├── RenderShapes.2008.sln
│ │ │ │ ├── RenderShapes.2010.sln
│ │ │ │ └── RenderShapes.csproj
│ │ │ ├── Data
│ │ │ │ ├── TestFile.doc
│ │ │ │ └── TestFile.docx
│ │ │ └── VisualBasic
│ │ │ ├── Program.vb
│ │ │ ├── RenderShapes.2008.sln
│ │ │ ├── RenderShapes.2010.sln
│ │ │ └── RenderShapes.vbproj
│ │ └── SaveAsMultipageTiff
│ │ ├── CSharp
│ │ │ ├── Program.cs
│ │ │ ├── SaveAsMultipageTiff.2008.sln
│ │ │ ├── SaveAsMultipageTiff.2010.sln
│ │ │ └── SaveAsMultipageTiff.csproj
│ │ ├── Data
│ │ │ └── TestFile.doc
│ │ └── VisualBasic
│ │ ├── Program.vb
│ │ ├── SaveAsMultipageTiff.2008.sln
│ │ ├── SaveAsMultipageTiff.2010.sln
│ │ └── SaveAsMultipageTiff.vbproj
│ └── ViewersAndVisualizers
│ ├── DocumentExplorer
│ │ ├── CSharp
│ │ │ ├── AboutForm.cs
│ │ │ ├── AboutForm.resx
│ │ │ ├── App.ico
│ │ │ ├── DocumentExplorer.2008.sln
│ │ │ ├── DocumentExplorer.2010.sln
│ │ │ ├── DocumentExplorer.csproj
│ │ │ ├── DocumentItems.cs
│ │ │ ├── ExceptionDialog.cs
│ │ │ ├── ExceptionDialog.resx
│ │ │ ├── GoToPageForm.cs
│ │ │ ├── GoToPageForm.resx
│ │ │ ├── Icons
│ │ │ │ ├── Body.ICO
│ │ │ │ ├── BookmarkEnd.ico
│ │ │ │ ├── BookmarkStart.ico
│ │ │ │ ├── Cell.ico
│ │ │ │ ├── Collapse.ICO
│ │ │ │ ├── Comment.ico
│ │ │ │ ├── CommentRangeEnd.ico
│ │ │ │ ├── CommentRangeStart.ico
│ │ │ │ ├── CustomXmlMarkup.ico
│ │ │ │ ├── Document.ICO
│ │ │ │ ├── DrawingML.ico
│ │ │ │ ├── Expand.ICO
│ │ │ │ ├── FieldEnd.ico
│ │ │ │ ├── FieldSeparator.ico
│ │ │ │ ├── FieldStart.ico
│ │ │ │ ├── Footer.ICO
│ │ │ │ ├── Footnote.ICO
│ │ │ │ ├── FormCheckBox.ICO
│ │ │ │ ├── FormDropDown.ICO
│ │ │ │ ├── FormField.ICO
│ │ │ │ ├── FormTextInput.ICO
│ │ │ │ ├── GroupShape.ico
│ │ │ │ ├── HeaderFooter.ICO
│ │ │ │ ├── Header.ICO
│ │ │ │ ├── InlineShape.ICO
│ │ │ │ ├── Node.ico
│ │ │ │ ├── OfficeMath.ico
│ │ │ │ ├── OleControl.ICO
│ │ │ │ ├── OleObject.ICO
│ │ │ │ ├── Paragraph.ICO
│ │ │ │ ├── Row.ico
│ │ │ │ ├── Run.ICO
│ │ │ │ ├── Section.ICO
│ │ │ │ ├── Shape.ICO
│ │ │ │ ├── SmartTag.ico
│ │ │ │ ├── SpecialChar.ICO
│ │ │ │ ├── StructuredDocumentTag.ico
│ │ │ │ └── Table.ICO
│ │ │ ├── Item.cs
│ │ │ ├── MainForm.cs
│ │ │ ├── MainForm.Designer.cs
│ │ │ ├── MainForm.resx
│ │ │ ├── Preview.cs
│ │ │ ├── ViewerForm.cs
│ │ │ └── ViewerForm.resx
│ │ └── VisualBasic
│ │ ├── AboutForm.resx
│ │ ├── AboutForm.vb
│ │ ├── App.ico
│ │ ├── DocumentExplorer.2008.sln
│ │ ├── DocumentExplorer.2010.sln
│ │ ├── DocumentExplorer.vbproj
│ │ ├── DocumentItems.vb
│ │ ├── ExceptionDialog.resx
│ │ ├── ExceptionDialog.vb
│ │ ├── GoToPageForm.resx
│ │ ├── GoToPageForm.vb
│ │ ├── Icons
│ │ │ ├── Body.ico
│ │ │ ├── BookmarkEnd.ico
│ │ │ ├── BookmarkStart.ico
│ │ │ ├── Cell.ico
│ │ │ ├── Collapse.ico
│ │ │ ├── Comment.ico
│ │ │ ├── CommentRangeEnd.ico
│ │ │ ├── CommentRangeStart.ico
│ │ │ ├── CustomXmlMarkup.ico
│ │ │ ├── Document.ico
│ │ │ ├── DrawingML.ico
│ │ │ ├── Expand.ico
│ │ │ ├── FieldEnd.ico
│ │ │ ├── FieldSeparator.ico
│ │ │ ├── FieldStart.ico
│ │ │ ├── Footer.ico
│ │ │ ├── Footnote.ico
│ │ │ ├── FormCheckBox.ico
│ │ │ ├── FormDropDown.ico
│ │ │ ├── FormField.ico
│ │ │ ├── FormTextInput.ico
│ │ │ ├── GroupShape.ico
│ │ │ ├── HeaderFooter.ico
│ │ │ ├── Header.ico
│ │ │ ├── InlineShape.ico
│ │ │ ├── Node.ico
│ │ │ ├── OleControl.ico
│ │ │ ├── OleObject.ico
│ │ │ ├── Paragraph.ico
│ │ │ ├── Row.ico
│ │ │ ├── Run.ico
│ │ │ ├── Section.ico
│ │ │ ├── Shape.ico
│ │ │ ├── SmartTag.ico
│ │ │ ├── SpecialChar.ico
│ │ │ ├── StructuredDocumentTag.ico
│ │ │ └── Table.ico
│ │ ├── Item.vb
│ │ ├── MainForm.resx
│ │ ├── MainForm.vb
│ │ ├── Preview.vb
│ │ ├── ViewerForm.resx
│ │ └── ViewerForm.vb
│ ├── ViewersAndVisualizersExamples.cs
│ └── ViewersAndVisualizersExamples.vb
├── README.md
└── Showcases
└── Document_Comparison_by_Aspose_Words_for_NET
├── ConsoleApp
│ ├── App.config
│ ├── ConsoleApp.csproj
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── UserFiles
│ ├── Mix Formatting1.docx
│ ├── Mix Formatting2.docx
│ ├── Newsletter 1.docx
│ ├── Newsletter 2.docx
│ ├── Paris Trip1 Compared to Paris Trip2.docx
│ ├── Paris Trip1.docx
│ └── Paris Trip2.docx
├── DocumentComparison
│ ├── Common.cs
│ ├── Content
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ └── Site.css
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Default.aspx.designer.cs
│ ├── Default.js
│ ├── DocumentComparison.csproj
│ ├── DocumentComparisonUtil.cs
│ ├── FileSystemItem.cs
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── p1.html
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Scripts
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-1.11.2.js
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery-1.11.2.min.map
│ │ ├── jquery.confirm.js
│ │ ├── jquery.confirm.min.js
│ │ ├── npm.js
│ │ └── _references.js
│ ├── Site.Master
│ ├── Site.Master.cs
│ ├── Site.Master.designer.cs
│ ├── UserFiles
│ │ ├── Invoice 1.docx
│ │ ├── Invoice 2.docx
│ │ ├── Mix Formatting1.docx
│ │ ├── Mix Formatting2.docx
│ │ ├── Newsletter 1.docx
│ │ ├── Newsletter 2.docx
│ │ ├── Paris Trip1.docx
│ │ ├── Paris Trip2.docx
│ │ ├── Resume - julia allio 1.docx
│ │ └── Resume - julia allio 2.docx
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── DocumentComparison.sln
├── README.md
└── sonar-project.properties
255 directories, 842 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论