├── .gitignore ├── Examples ├── ApiExamples │ ├── Java │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── Examples │ │ │ │ ├── ApiExampleBase.java │ │ │ │ ├── CustomBarcodeGenerator.java │ │ │ │ ├── DocumentHelper.java │ │ │ │ ├── ExAI.java │ │ │ │ ├── ExAbsolutePositionTab.java │ │ │ │ ├── ExBookmarks.java │ │ │ │ ├── ExBookmarksOutlineLevelCollection.java │ │ │ │ ├── ExBorder.java │ │ │ │ ├── ExBorderCollection.java │ │ │ │ ├── ExBuildVersion.java │ │ │ │ ├── ExBuildingBlocks.java │ │ │ │ ├── ExCellFormat.java │ │ │ │ ├── ExCertificateHolder.java │ │ │ │ ├── ExCharts.java │ │ │ │ ├── ExChmLoadOptions.java │ │ │ │ ├── ExCleanupOptions.java │ │ │ │ ├── ExComment.java │ │ │ │ ├── ExCompatibilityOptions.java │ │ │ │ ├── ExControlChar.java │ │ │ │ ├── ExDigitalSignatureCollection.java │ │ │ │ ├── ExDigitalSignatureUtil.java │ │ │ │ ├── ExDocSaveOptions.java │ │ │ │ ├── ExDocument.java │ │ │ │ ├── ExDocumentBase.java │ │ │ │ ├── ExDocumentBuilder.java │ │ │ │ ├── ExDocumentBuilderImages.java │ │ │ │ ├── ExDocumentProperties.java │ │ │ │ ├── ExDocumentVisitor.java │ │ │ │ ├── ExDotNetVsJava.java │ │ │ │ ├── ExDrawing.java │ │ │ │ ├── ExEditableRange.java │ │ │ │ ├── ExField.java │ │ │ │ ├── ExFieldOptions.java │ │ │ │ ├── ExFile.java │ │ │ │ ├── ExFont.java │ │ │ │ ├── ExFontSettings.java │ │ │ │ ├── ExFormFields.java │ │ │ │ ├── ExHeaderFooter.java │ │ │ │ ├── ExHtmlFixedSaveOptions.java │ │ │ │ ├── ExHtmlLoadOptions.java │ │ │ │ ├── ExHtmlSaveOptions.java │ │ │ │ ├── ExHyphenation.java │ │ │ │ ├── ExImage.java │ │ │ │ ├── ExImageSaveOptions.java │ │ │ │ ├── ExInline.java │ │ │ │ ├── ExInlineStory.java │ │ │ │ ├── ExLayout.java │ │ │ │ ├── ExLicense.java │ │ │ │ ├── ExLists.java │ │ │ │ ├── ExLoadOptions.java │ │ │ │ ├── ExLowCode.java │ │ │ │ ├── ExMailMerge.java │ │ │ │ ├── ExMailMergeCustom.java │ │ │ │ ├── ExMailMergeEvent.java │ │ │ │ ├── ExMarkdownLoadOptions.java │ │ │ │ ├── ExMarkdownSaveOptions.java │ │ │ │ ├── ExMetered.java │ │ │ │ ├── ExMossDoc2Pdf.java │ │ │ │ ├── ExMossRtf2Docx.java │ │ │ │ ├── ExNode.java │ │ │ │ ├── ExNodeImporter.java │ │ │ │ ├── ExOdtSaveOptions.java │ │ │ │ ├── ExOoxmlSaveOptions.java │ │ │ │ ├── ExPageSetup.java │ │ │ │ ├── ExParagraph.java │ │ │ │ ├── ExParagraphFormat.java │ │ │ │ ├── ExPclSaveOptions.java │ │ │ │ ├── ExPdfLoadOptions.java │ │ │ │ ├── ExPdfSaveOptions.java │ │ │ │ ├── ExPlainTextDocument.java │ │ │ │ ├── ExPsSaveOptions.java │ │ │ │ ├── ExRange.java │ │ │ │ ├── ExRenameMergeFields.java │ │ │ │ ├── ExRendering.java │ │ │ │ ├── ExReplaceHyperlinks.java │ │ │ │ ├── ExReportingEngine.java │ │ │ │ ├── ExRevision.java │ │ │ │ ├── ExRtfLoadOptions.java │ │ │ │ ├── ExRtfSaveOptions.java │ │ │ │ ├── ExSavingCallback.java │ │ │ │ ├── ExSection.java │ │ │ │ ├── ExShape.java │ │ │ │ ├── ExSignDocumentCustom.java │ │ │ │ ├── ExSmartTag.java │ │ │ │ ├── ExStructuredDocumentTag.java │ │ │ │ ├── ExStyles.java │ │ │ │ ├── ExSvgSaveOptions.java │ │ │ │ ├── ExTabStop.java │ │ │ │ ├── ExTable.java │ │ │ │ ├── ExTableColumn.java │ │ │ │ ├── ExThemes.java │ │ │ │ ├── ExTxtLoadOptions.java │ │ │ │ ├── ExTxtSaveOptions.java │ │ │ │ ├── ExUtilityClasses.java │ │ │ │ ├── ExVariableCollection.java │ │ │ │ ├── ExVbaProject.java │ │ │ │ ├── ExViewOptions.java │ │ │ │ ├── ExWordML2003SaveOptions.java │ │ │ │ ├── ExXamlFixedSaveOptions.java │ │ │ │ ├── ExXamlFlowSaveOptions.java │ │ │ │ ├── ExXlsxSaveOptions.java │ │ │ │ ├── ExXpsSaveOptions.java │ │ │ │ ├── PrintTracker.java │ │ │ │ └── TestUtil.java │ │ │ │ └── TestData │ │ │ │ ├── Common.java │ │ │ │ ├── TestBuilders │ │ │ │ ├── ColorItemTestBuilder.java │ │ │ │ ├── DocumentTestBuilder.java │ │ │ │ ├── ImageTestBuilder.java │ │ │ │ └── NumericTestBuilder.java │ │ │ │ └── TestClasses │ │ │ │ ├── ClientTestClass.java │ │ │ │ ├── ColorItemTestClass.java │ │ │ │ ├── ContractTestClass.java │ │ │ │ ├── DocumentTestClass.java │ │ │ │ ├── ImageTestClass.java │ │ │ │ ├── ManagerTestClass.java │ │ │ │ ├── MessageTestClass.java │ │ │ │ ├── NumericTestClass.java │ │ │ │ ├── ShareQuoteTestClass.java │ │ │ │ ├── ShareTestClass.java │ │ │ │ └── SignPersonTestClass.java │ │ └── testng-results.xml │ └── JavaPorting │ │ ├── ApiExampleBase.java │ │ ├── CsPorterConfig.xml │ │ ├── CsPorterReport.xml │ │ ├── CustomBarcodeGenerator.java │ │ ├── DocumentHelper.java │ │ ├── ExAI.java │ │ ├── ExAbsolutePositionTab.java │ │ ├── ExBookmarks.java │ │ ├── ExBookmarksOutlineLevelCollection.java │ │ ├── ExBorder.java │ │ ├── ExBorderCollection.java │ │ ├── ExBuildVersion.java │ │ ├── ExBuildingBlocks.java │ │ ├── ExCellFormat.java │ │ ├── ExCertificateHolder.java │ │ ├── ExCharts.java │ │ ├── ExChmLoadOptions.java │ │ ├── ExCleanupOptions.java │ │ ├── ExComHelper.java │ │ ├── ExComment.java │ │ ├── ExCompatibilityOptions.java │ │ ├── ExControlChar.java │ │ ├── ExDigitalSignatureCollection.java │ │ ├── ExDigitalSignatureUtil.java │ │ ├── ExDocSaveOptions.java │ │ ├── ExDocument.java │ │ ├── ExDocumentBase.java │ │ ├── ExDocumentBuilder.java │ │ ├── ExDocumentBuilderImages.java │ │ ├── ExDocumentProperties.java │ │ ├── ExDocumentVisitor.java │ │ ├── ExDrawing.java │ │ ├── ExEditableRange.java │ │ ├── ExField.java │ │ ├── ExFieldOptions.java │ │ ├── ExFile.java │ │ ├── ExFont.java │ │ ├── ExFontSettings.java │ │ ├── ExFormFields.java │ │ ├── ExHeaderFooter.java │ │ ├── ExHtmlFixedSaveOptions.java │ │ ├── ExHtmlLoadOptions.java │ │ ├── ExHtmlSaveOptions.java │ │ ├── ExHyphenation.java │ │ ├── ExImage.java │ │ ├── ExImageSaveOptions.java │ │ ├── ExInline.java │ │ ├── ExInlineStory.java │ │ ├── ExLayout.java │ │ ├── ExLicense.java │ │ ├── ExLists.java │ │ ├── ExLoadOptions.java │ │ ├── ExLowCode.java │ │ ├── ExMailMerge.java │ │ ├── ExMailMergeCustom.java │ │ ├── ExMailMergeCustomNested.java │ │ ├── ExMailMergeEvent.java │ │ ├── ExMarkdownLoadOptions.java │ │ ├── ExMarkdownSaveOptions.java │ │ ├── ExMetered.java │ │ ├── ExMossDoc2Pdf.java │ │ ├── ExMossRtf2Docx.java │ │ ├── ExNode.java │ │ ├── ExNodeImporter.java │ │ ├── ExOdtSaveOptions.java │ │ ├── ExOoxmlSaveOptions.java │ │ ├── ExPageSetup.java │ │ ├── ExParagraph.java │ │ ├── ExParagraphFormat.java │ │ ├── ExPclSaveOptions.java │ │ ├── ExPdfLoadOptions.java │ │ ├── ExPdfSaveOptions.java │ │ ├── ExPlainTextDocument.java │ │ ├── ExPsSaveOptions.java │ │ ├── ExRange.java │ │ ├── ExRenameMergeFields.java │ │ ├── ExRendering.java │ │ ├── ExReplaceHyperlinks.java │ │ ├── ExReportingEngine.java │ │ ├── ExRevision.java │ │ ├── ExRtfLoadOptions.java │ │ ├── ExRtfSaveOptions.java │ │ ├── ExSavingCallback.java │ │ ├── ExSection.java │ │ ├── ExShape.java │ │ ├── ExSignDocumentCustom.java │ │ ├── ExSmartTag.java │ │ ├── ExStructuredDocumentTag.java │ │ ├── ExStyles.java │ │ ├── ExSvgSaveOptions.java │ │ ├── ExTabStop.java │ │ ├── ExTable.java │ │ ├── ExTableColumn.java │ │ ├── ExThemes.java │ │ ├── ExTxtLoadOptions.java │ │ ├── ExTxtSaveOptions.java │ │ ├── ExUtilityClasses.java │ │ ├── ExVariableCollection.java │ │ ├── ExVbaProject.java │ │ ├── ExViewOptions.java │ │ ├── ExWordML2003SaveOptions.java │ │ ├── ExXamlFixedSaveOptions.java │ │ ├── ExXamlFlowSaveOptions.java │ │ ├── ExXlsxSaveOptions.java │ │ ├── ExXpsSaveOptions.java │ │ ├── ExamplesComparison.cmp7 │ │ ├── JavaPorting, Examples.foldercomparison │ │ ├── PortExamplesComparison.cmp7 │ │ ├── PrintTracker.java │ │ ├── TestData │ │ ├── Common.java │ │ ├── TestBuilders │ │ │ ├── ColorItemTestBuilder.java │ │ │ ├── DocumentTestBuilder.java │ │ │ ├── ImageTestBuilder.java │ │ │ └── NumericTestBuilder.java │ │ └── TestClasses │ │ │ ├── ClientTestClass.java │ │ │ ├── ColorItemTestClass.java │ │ │ ├── ContractTestClass.java │ │ │ ├── DocumentTestClass.java │ │ │ ├── ImageTestClass.java │ │ │ ├── ManagerTestClass.java │ │ │ ├── MessageTestClass.java │ │ │ ├── NumericTestClass.java │ │ │ ├── ShareQuoteTestClass.java │ │ │ └── ShareTestClass.java │ │ ├── TestUtil.java │ │ └── readme.txt ├── Data │ ├── Absolute position tab.docx │ ├── ActiveX controls.docx │ ├── Alte DIN 1451 Mittelschrift.ttf │ ├── Asian typography.docx │ ├── Azw3 document.azw3 │ ├── Background images (word to pdf).pdf │ ├── Background images.docx │ ├── Bibliography custom style.xsl │ ├── Bibliography sources.docx │ ├── Bibliography.docx │ ├── Big document.docx │ ├── Blank pages.docx │ ├── Blank.docx │ ├── Bookmarks in headers and footers.docx │ ├── Bookmarks.docx │ ├── Borders.docx │ ├── Bullet points with alternative font.docx │ ├── Business brochure.dotx │ ├── CD collection XSL transformation.xsl │ ├── CD collection data.xml │ ├── Cell revisions.docx │ ├── Combo chart.docx │ ├── Comments.docx │ ├── Content-ID.docx │ ├── Continuous section page numbering.docx │ ├── Corrupted document.docx │ ├── Corrupted footnotes.docx │ ├── Corrupted image.docx │ ├── Custom XML part in structured document tag.docx │ ├── Custom font fallback settings.xml │ ├── Custom list numbering.docx │ ├── Custom parts OOXML package.docx │ ├── Custom style.css │ ├── Custom style.docx │ ├── DML unique ID compare.docx │ ├── DML unique ID original.docx │ ├── DataPoint format.docx │ ├── Database │ │ ├── Northwind.accdb │ │ ├── cat001.png │ │ ├── cat001.zip │ │ ├── cat002.png │ │ ├── cat003.png │ │ ├── cat004.png │ │ ├── cat005.png │ │ ├── cat006.png │ │ ├── cat007.png │ │ └── cat008.png │ ├── Decorative shapes.docx │ ├── Different lists.docx │ ├── Digitally signed.docx │ ├── Digitally signed.odt │ ├── Digitally signed.ott │ ├── Dirty field.docx │ ├── Document destination with list.docx │ ├── Document explorer images │ │ ├── App.gif │ │ ├── Body.gif │ │ ├── BookmarkEnd.gif │ │ ├── BookmarkStart.gif │ │ ├── Cell.gif │ │ ├── Comment.gif │ │ ├── CommentRangeEnd.gif │ │ ├── CommentRangeStart.gif │ │ ├── CustomXmlMarkup.gif │ │ ├── Document.gif │ │ ├── DrawingML.gif │ │ ├── FieldEnd.gif │ │ ├── FieldSeparator.gif │ │ ├── FieldStart.gif │ │ ├── Footer.gif │ │ ├── Footnote.gif │ │ ├── FormCheckBox.gif │ │ ├── FormDropDown.gif │ │ ├── FormField.gif │ │ ├── FormTextInput.gif │ │ ├── GroupShape.gif │ │ ├── Header.gif │ │ ├── HeaderFooter.gif │ │ ├── InlineShape.gif │ │ ├── Node.gif │ │ ├── OfficeMath.gif │ │ ├── OleControl.gif │ │ ├── OleObject.gif │ │ ├── Paragraph.gif │ │ ├── Row.gif │ │ ├── Run.gif │ │ ├── Section.gif │ │ ├── Shape.gif │ │ ├── SmartTag.gif │ │ ├── SpecialChar.gif │ │ ├── StructuredDocumentTag.gif │ │ ├── Table.gif │ │ ├── aspose.gif │ │ ├── tlb_1.gif │ │ ├── tlb_2.gif │ │ ├── tlb_3.gif │ │ ├── tlb_4.gif │ │ └── tlb_5.gif │ ├── Document insertion 1.docx │ ├── Document insertion 2.docx │ ├── Document insertion destination.docx │ ├── Document layout.docx │ ├── Document source with list.docx │ ├── Document source.docx │ ├── Document with SDT 1.docx │ ├── Document with SDT 2.docx │ ├── Document with WebP image.docx │ ├── Document with ms-its links.chm │ ├── Document.doc │ ├── Document.docx │ ├── Document.html │ ├── Document.mobi │ ├── Document.odt │ ├── Document.xml │ ├── DocumentVisitor-compatible features.docx │ ├── DrawingML shape 3D effects.docx │ ├── DrawingML shape effects.docx │ ├── DrawingML shape fallbacks.docx │ ├── DrawingML text effects.docx │ ├── EMF.docx │ ├── Embedded font rights.docx │ ├── Embedded font.doc │ ├── Embedded font.docx │ ├── Emphases markdown warning.docx │ ├── Encoded in UTF-7.txt │ ├── Encrypted.docx │ ├── Encrypted.odt │ ├── Encrypted.ott │ ├── English text.txt │ ├── Epub document.epub │ ├── Extended properties.docx │ ├── External XML schema.docx │ ├── Extract content.docx │ ├── FB2 document.fb2 │ ├── Field sample - ADDIN.docx │ ├── Field sample - ADDRESSBLOCK.docx │ ├── Field sample - BARCODE.docx │ ├── Field sample - EQ.docx │ ├── Field sample - Field with data.docx │ ├── Field sample - INCLUDEPICTURE.docx │ ├── Field sample - MERGEFIELD.docx │ ├── Field sample - PRINTDATE.docx │ ├── Field sample - PRIVATE.docx │ ├── Field sample - TOC.docx │ ├── Find and highlight.docx │ ├── Font fallback rules.xml │ ├── Font substitution rules.xml │ ├── Footer.docx │ ├── Footnotes and endnotes.docx │ ├── Form fields.docx │ ├── Format revision.docx │ ├── Formatted elements.docx │ ├── Frameset.docx │ ├── German text.docx │ ├── Get substitution without suffixes.docx │ ├── Golds │ │ ├── Document.CompareOptions Gold.docx │ │ ├── Document.HyphenationOptions Gold.docx │ │ ├── Document.UseCurrentDocumentFormatting Gold.docx │ │ ├── DocumentBuilder.InsertDocument Gold.docx │ │ ├── DocumentBuilder.InsertFootnote Gold.docx │ │ ├── DocumentBuilder.MathML Gold.docx │ │ ├── DocumentBuilder.MathML Gold.pdf │ │ ├── DocumentBuilder.NumberFormat Gold.docx │ │ ├── DocumentBuilder.SignatureLineProviderId Gold.docx │ │ ├── HyphenationOptions Gold.docx │ │ ├── ImageSaveOptions.BlackAndWhite Gold.png │ │ ├── MailMerge.CleanUp Gold.docx │ │ ├── MailMerge.CleanupOptions Gold.docx │ │ ├── MailMerge.InsertHtml Gold.doc │ │ ├── MarkdownSaveOptions.ExportOfficeMathAsLatex.Gold.md │ │ ├── MathML Gold.docx │ │ ├── MathML Gold.pdf │ │ ├── ReportingEngine.BackColor Gold.docx │ │ ├── ReportingEngine.ContextualObjectMemberAccess Gold.docx │ │ ├── ReportingEngine.CsvData Gold.docx │ │ ├── ReportingEngine.DataSource Gold.docx │ │ ├── ReportingEngine.DataSourceWithNestedElements Gold.docx │ │ ├── ReportingEngine.DoNotRemoveEmptyParagraphs Gold.docx │ │ ├── ReportingEngine.DynamicStretchingImageWithinTextBox Gold.docx │ │ ├── ReportingEngine.ExtensionMethods Gold.docx │ │ ├── ReportingEngine.InsertDocumentDynamically(stream,doc,bytes) Gold.docx │ │ ├── ReportingEngine.InsertDocumentDynamically(uri) Gold.docx │ │ ├── ReportingEngine.InsertDocumentDynamicallyWithAdditionalTemplateChecking Gold.docx │ │ ├── ReportingEngine.InsertImageDynamically(stream,doc,bytes) Gold.docx │ │ ├── ReportingEngine.InsertImageDynamically(uri) Gold.docx │ │ ├── ReportingEngine.JsonDataString Gold.docx │ │ ├── ReportingEngine.KnownTypes Gold.docx │ │ ├── ReportingEngine.MergingTableCellsDynamically.Merged Gold.docx │ │ ├── ReportingEngine.MergingTableCellsDynamically.NotMerged Gold.docx │ │ ├── ReportingEngine.Operators Gold.docx │ │ ├── ReportingEngine.RemoveEmptyParagraphs Gold.docx │ │ ├── ReportingEngine.RestartingListNumberingDynamically Gold.docx │ │ ├── ReportingEngine.RestartingListNumberingDynamicallyWhileInsertingDocumentDynamically Gold.docx │ │ ├── ReportingEngine.SelectiveDeletionOfParagraphs Gold.docx │ │ ├── ReportingEngine.SetBackgroundColorDynamically Gold.docx │ │ ├── ReportingEngine.SetChartSeriesColorDynamically Gold.docx │ │ ├── ReportingEngine.SetPointColorDynamically Gold.docx │ │ ├── ReportingEngine.SetTextColorDynamically Gold.docx │ │ ├── ReportingEngine.SourseListNumbering Gold.docx │ │ ├── ReportingEngine.TestBubbleChart Gold.docx │ │ ├── ReportingEngine.TestChart Gold.docx │ │ ├── ReportingEngine.TestDataTable Gold.docx │ │ ├── ReportingEngine.TestLeaveChartSeries Gold.docx │ │ ├── ReportingEngine.TestNestedDataTable Gold.docx │ │ ├── ReportingEngine.TestRemoveChartSeries Gold.docx │ │ ├── ReportingEngine.Total Gold.docx │ │ ├── Shape.OfficeMath Gold.docx │ │ └── StructuredDocumentTag.CustomXml Gold.docx │ ├── HTML help.chm │ ├── Header and footer types.docx │ ├── Heading pairs and titles of parts.docx │ ├── Hebrew text.txt │ ├── Hidden content.docx │ ├── Html with FontFace.html │ ├── Hyperlinks.docx │ ├── Id prefix.docx │ ├── Iframe.htm │ ├── Iframes.html │ ├── Image bullet points.docx │ ├── Images.docx │ ├── Images.html │ ├── Images.pdf │ ├── Images │ │ ├── Barcode.png │ │ ├── Enhanced Windows MetaFile.emf │ │ ├── Graphics Interchange Format.gif │ │ ├── Logo icon.ico │ │ ├── Logo.jpg │ │ ├── Microsoft Visio drawing.vsd │ │ ├── RightF.jpg │ │ ├── Scalable Vector Graphics.svg │ │ ├── Tagged Image File Format.tiff │ │ ├── Transparent background logo.png │ │ ├── WebP image.webp │ │ ├── Windows MetaFile.wmf │ │ └── WrongF.jpg │ ├── Ink object.docx │ ├── JavaScript in HREF.docx │ ├── Korean backslash symbol.docx │ ├── Layout entities.docx │ ├── Legacy control character.doc │ ├── Legacy drop-down.docx │ ├── Legacy fields.doc │ ├── Linked fields.docx │ ├── Linked image.docx │ ├── List destination.docx │ ├── List item.docx │ ├── List of people.csv │ ├── List of people.json │ ├── List of people.xml │ ├── List source.docx │ ├── List with leading zero.docx │ ├── List with the same definition identifier - destination.docx │ ├── List with the same definition identifier - source.docx │ ├── Macro.docm │ ├── Mail merge data - Customers.xml │ ├── Mail merge data - Orders.xml │ ├── Mail merge data - Purchase order.xml │ ├── Mail merge data - Vendors.xml │ ├── Mail merge destination - Northwind employees.docx │ ├── Mail merge destination - Northwind suppliers.docx │ ├── Mail merge destination - Suppliers.docx │ ├── Mail merge destinations - Complex template.docx │ ├── Mail merge destinations - Fax.docx │ ├── Mail merge destinations - Invoice.docx │ ├── Mail merge destinations - LINQ.docx │ ├── Mail merge destinations - Mustache syntax.docx │ ├── Mail merge destinations - Orders.docx │ ├── Mail merge destinations - Registration complete.docx │ ├── Mail merge destinations - Vendor.docx │ ├── Mail merge mustache tags.docx │ ├── Mail merge regions.docx │ ├── Mail merge tables.docx │ ├── Mail merge template.docx │ ├── Mail merge with regions data set.docx │ ├── Mail merge with regions.docx │ ├── Mail merge.doc │ ├── Master document.docx │ ├── Math shapes.docx │ ├── Merged table.docx │ ├── Microsoft equation object.docx │ ├── Missing font.docx │ ├── Missing font.html │ ├── Missing image.html │ ├── Multi-section structured document tags.docx │ ├── MyFonts │ │ ├── AllegroOpen.otf │ │ ├── Amethysta │ │ │ └── Amethysta-Regular.ttf │ │ ├── Arvo-Bold.ttf │ │ ├── Arvo-BoldItalic.ttf │ │ ├── Arvo-Italic.ttf │ │ ├── Arvo-Regular.ttf │ │ ├── Junction │ │ │ ├── static │ │ │ │ ├── Junction-Bold.ttf │ │ │ │ ├── Junction-Light.ttf │ │ │ │ ├── Junction-Medium.ttf │ │ │ │ ├── Junction-Regular.ttf │ │ │ │ └── Junction-SemiBold.ttf │ │ │ └── variable │ │ │ │ └── JunctionVariableGX.ttf │ │ ├── Kreon-Bold.ttf │ │ ├── Kreon-Light.ttf │ │ ├── Kreon-Regular.ttf │ │ ├── NoticiaText-Bold.ttf │ │ ├── NoticiaText-BoldItalic.ttf │ │ ├── NoticiaText-Italic.ttf │ │ ├── NoticiaText-Regular.ttf │ │ ├── Slabo13px-Regular.ttf │ │ ├── Slabo27px-Regular.ttf │ │ ├── Squarish Sans CT Regular.ttf │ │ ├── dinot.otf │ │ ├── dinot.ttf │ │ └── mplus-2m-regular.ttf │ ├── Nested elements.json │ ├── Nested elements.xml │ ├── Nested fields.docx │ ├── Nested tables.docx │ ├── No default editing language.docx │ ├── Non compatible table.docx │ ├── Northwind traders.docx │ ├── Number detection.txt │ ├── OLE ActiveX controls.docm │ ├── OLE objects.docx │ ├── OLE shape.rtf │ ├── OLE spreadsheet.docm │ ├── Odso data.docx │ ├── Office math.docx │ ├── OpenType text shaping.docx │ ├── PDF artifacts.docx │ ├── Page fields.docx │ ├── Paragraph frame.docx │ ├── Paragraphs.docx │ ├── Pdf Document.pdf │ ├── Phonetic guide.docx │ ├── Presentation.pptx │ ├── Properties.docx │ ├── Protected pdf document.pdf │ ├── Quotes.md │ ├── Radio buttons.docx │ ├── Rendering.docx │ ├── Replace regex.docx │ ├── Replace text with fields.docx │ ├── Report building.docx │ ├── Reporting engine template - Background color (Java).docx │ ├── Reporting engine template - Bubble chart (Java).docx │ ├── Reporting engine template - Bulleted list (Java).docx │ ├── Reporting engine template - Chart (Java).docx │ ├── Reporting engine template - Chart series (Java).docx │ ├── Reporting engine template - Chart series color (Java).docx │ ├── Reporting engine template - Chart with filtering (Java).docx │ ├── Reporting engine template - Common master detail (Java).docx │ ├── Reporting engine template - Contextual object member access (Java).docx │ ├── Reporting engine template - Csv data destination (Java).docx │ ├── Reporting engine template - Data destination with nested elements (Java).docx │ ├── Reporting engine template - Data table (Java).docx │ ├── Reporting engine template - Extension methods (Java).docx │ ├── Reporting engine template - Fields (Java).docx │ ├── Reporting engine template - Header variable (Java).docx │ ├── Reporting engine template - Html (Java).html │ ├── Reporting engine template - If greedy (Java).docx │ ├── Reporting engine template - If-else (Java).docx │ ├── Reporting engine template - Index of (Java).docx │ ├── Reporting engine template - Inserting hyperlinks (Java).docx │ ├── Reporting engine template - JSON data destination (Java).docx │ ├── Reporting engine template - List numbering (Java).docx │ ├── Reporting engine template - Merging table cells dynamically (Java).docx │ ├── Reporting engine template - Multicolored numbered list (Java).docx │ ├── Reporting engine template - Nested data table (Java).docx │ ├── Reporting engine template - Numbered list (Java).docx │ ├── Reporting engine template - Operators (Java).docx │ ├── Reporting engine template - Pie chart (Java).docx │ ├── Reporting engine template - Point color (Java).docx │ ├── Reporting engine template - Remove empty paragraphs (Java).docx │ ├── Reporting engine template - Scatter chart (Java).docx │ ├── Reporting engine template - Selective remove paragraphs.docx │ ├── Reporting engine template - Table row (Java).docx │ ├── Reporting engine template - Table row conditional blocks (Java).docx │ ├── Reporting engine template - Table row greedy (Java).docx │ ├── Reporting engine template - Table with filtering (Java).docx │ ├── Reporting engine template - Text color (Java).docx │ ├── Reporting engine template - Total (Java).docx │ ├── Reporting engine template - Word 2016 Charts (Java).docx │ ├── Reporting engine template - XML data destination (Java).docx │ ├── Revision footnotes.docx │ ├── Revision runs.docx │ ├── Revision shape.docx │ ├── Revisions at list levels.docx │ ├── Revisions.docx │ ├── Rotated cell text.docx │ ├── Rounded rectangle shape.docx │ ├── Section breaks with numbering.docx │ ├── Shadow color.docx │ ├── Shape high dpi.docx │ ├── Shape shadow effect.docx │ ├── Shape stroke pattern border.docx │ ├── Shape with linked chart.docx │ ├── Signature line.docx │ ├── Smart tags.doc │ ├── SmartArt.docx │ ├── Special symbol.docx │ ├── Spreadsheet.xlsx │ ├── Stroke gradient outline.docx │ ├── Structured document tag with HTML content.docx │ ├── Structured document tags by id.docx │ ├── Structured document tags with building blocks.docx │ ├── Structured document tags.docx │ ├── Style with alias.docx │ ├── Styles destination.docx │ ├── Styles source.docx │ ├── Styles.docx │ ├── Subdocument.docx │ ├── Table column bookmark.doc │ ├── Table column bookmarks.doc │ ├── Table column bookmarks.docx │ ├── Table of content template.docx │ ├── Table of contents.docx │ ├── Table spanning two pages.docx │ ├── Table with fields.docx │ ├── Table with merged cells.docx │ ├── Table wrapped by text.docx │ ├── Tables.docx │ ├── TestShapesUnsupportedBevel.docx │ ├── TestWarningsForBevels.docx │ ├── TestWarningsForLighting.docx │ ├── TestWarningsForMaterial.docx │ ├── Text positioning operators.docx │ ├── TextBoxes.docx │ ├── Textbox control.docm │ ├── Textboxes in drawing canvas.docx │ ├── Theme colors.docx │ ├── Two color gradient.docx │ ├── UTF-8 characters.rtf │ ├── Unoptimized document.docx │ ├── Unused styles.docx │ ├── VBA project.docm │ ├── VML conditional.htm │ ├── Various fields.docx │ ├── Various shapes.docx │ ├── Vba protected.docm │ ├── Versions.doc │ ├── WMF with image.docx │ ├── WMF with text.docx │ ├── Web extension.docx │ ├── Word document with missing file extension │ ├── Xlsx DateTime.docx │ ├── Xlsx Document.xlsx │ ├── Zip file.zip │ ├── hyph_de_CH.dic │ ├── hyph_en_US.dic │ └── morzal.pfx └── DocsExamples │ ├── Java │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── DocsExamples │ │ ├── AI_powered_Features │ │ │ └── WorkingWithAI.java │ │ ├── DocsExamplesBase.java │ │ ├── Document_explorer │ │ │ ├── About.java │ │ │ ├── AboutForm.form │ │ │ ├── AboutForm.java │ │ │ ├── Dialogs.java │ │ │ ├── DocumentExplorer.java │ │ │ ├── DocumentItems.java │ │ │ ├── ErrorDialog.java │ │ │ ├── ErrorDialogForm.form │ │ │ ├── ErrorDialogForm.java │ │ │ ├── Globals.java │ │ │ ├── Item.java │ │ │ ├── Main.java │ │ │ ├── MainForm.form │ │ │ ├── MainForm.java │ │ │ ├── OpenFileFilter.java │ │ │ ├── SaveDialogChangeListener.java │ │ │ ├── SaveFileFilter.java │ │ │ └── Utils.java │ │ ├── File_formats_and_conversions │ │ │ ├── BaseConversions.java │ │ │ ├── Complex_examples_and_helpers │ │ │ │ └── WorkingWithDocumentInDatabase.java │ │ │ ├── Load_options │ │ │ │ ├── WorkingWithHtmlLoadOptions.java │ │ │ │ ├── WorkingWithLoadOptions.java │ │ │ │ ├── WorkingWithRtfLoadOptions.java │ │ │ │ └── WorkingWithTxtLoadOptions.java │ │ │ ├── Save_options │ │ │ │ ├── WorkingWithDocSaveOptions.java │ │ │ │ ├── WorkingWithHtmlFixedSaveOptions.java │ │ │ │ ├── WorkingWithHtmlSaveOptions.java │ │ │ │ ├── WorkingWithImageSaveOptions.java │ │ │ │ ├── WorkingWithMarkdownSaveOptions.java │ │ │ │ ├── WorkingWithOdtSaveOptions.java │ │ │ │ ├── WorkingWithOoxmlSaveOptions.java │ │ │ │ ├── WorkingWithPclSaveOptions.java │ │ │ │ ├── WorkingWithPdfSaveOptions.java │ │ │ │ ├── WorkingWithRtfSaveOptions.java │ │ │ │ └── WorkingWithTxtSaveOptions.java │ │ │ └── WorkingWithFileFormat.java │ │ ├── Getting_started │ │ │ ├── ApplyLicense.java │ │ │ └── HelloWorld.java │ │ ├── LINQ_Reporting_Engine │ │ │ ├── BaseOperations.java │ │ │ ├── BuildOptions.java │ │ │ ├── Charts.java │ │ │ ├── Lists.java │ │ │ └── Tables.java │ │ ├── Mail_Merge_And_Reporting │ │ │ ├── BaseOperations.java │ │ │ ├── Complex_examples_and_helpers │ │ │ │ ├── ApplyCustomLogicToEmptyRegions.java │ │ │ │ ├── CreateMailMergeTemplate.java │ │ │ │ └── NestedMailMergeCustom.java │ │ │ ├── WorkingWithCleanupOptions.java │ │ │ ├── WorkingWithFields.java │ │ │ └── WorkingWithXmlData.java │ │ ├── Programming_with_documents │ │ │ ├── Contents_management │ │ │ │ ├── ExtractContent.java │ │ │ │ ├── ExtractContentHelper.java │ │ │ │ ├── FindAndReplace.java │ │ │ │ ├── RemoveContent.java │ │ │ │ ├── WorkingWithBookmarks.java │ │ │ │ ├── WorkingWithRanges.java │ │ │ │ ├── WorkingWithSdt.java │ │ │ │ ├── WorkingWithStylesAndThemes.java │ │ │ │ └── WorkingWithTableOfContent.java │ │ │ ├── EnableOpenTypeFeatures.java │ │ │ ├── Protect_or_encrypt_document │ │ │ │ ├── DocumentProtection.java │ │ │ │ └── WorkingWithDigitalSinatures.java │ │ │ ├── Split_documents │ │ │ │ ├── PageSplitter.java │ │ │ │ ├── SplitDocument.java │ │ │ │ └── SplitIntoHtmlPages.java │ │ │ ├── WorkingWithComments.java │ │ │ ├── WorkingWithFields.java │ │ │ ├── WorkingWithFonts.java │ │ │ ├── WorkingWithFootnoteAndEndnote.java │ │ │ ├── WorkingWithFormFields.java │ │ │ ├── WorkingWithHeadersAndFooters.java │ │ │ ├── WorkingWithHyphenation.java │ │ │ ├── WorkingWithList.java │ │ │ ├── WorkingWithMarkdown.java │ │ │ ├── WorkingWithNode.java │ │ │ ├── WorkingWithOleObjectsAndActiveX.java │ │ │ ├── WorkingWithRevisions.java │ │ │ ├── WorkingWithSection.java │ │ │ ├── WorkingWithTextboxes.java │ │ │ ├── WorkingWithVbaMacros.java │ │ │ ├── Working_with_document │ │ │ │ ├── AddContentUsingDocumentBuilder.java │ │ │ │ ├── CloneAndCombineDocuments.java │ │ │ │ ├── CompareDocuments.java │ │ │ │ ├── DocumentFormatting.java │ │ │ │ ├── JoinAndAppendDocuments.java │ │ │ │ ├── WorkingWithDocumentOptionsAndSettings.java │ │ │ │ ├── WorkingWithDocumentProperties.java │ │ │ │ └── WorkingWithWebExtension.java │ │ │ ├── Working_with_graphic_elements │ │ │ │ ├── CustomBarcodeGenerator.java │ │ │ │ ├── WorkingWithBarcodeGenerator.java │ │ │ │ ├── WorkingWithCharts.java │ │ │ │ ├── WorkingWithImages.java │ │ │ │ ├── WorkingWithOfficeMath.java │ │ │ │ ├── WorkingWithShapes.java │ │ │ │ └── WorkingWithWatermark.java │ │ │ └── Working_with_tables │ │ │ │ ├── WorkingWithTableStylesAndFormatting.java │ │ │ │ └── WorkingWithTables.java │ │ └── Rendering_and_printing │ │ │ ├── Complex_examples_and_helpers │ │ │ ├── EnumerateLayoutElements.java │ │ │ └── PageLayoutHelper.java │ │ │ ├── PrintDocuments.java │ │ │ └── RenderingShapes.java │ │ └── TestData │ │ ├── Common.java │ │ ├── TestBuilders │ │ ├── ColorItemTestBuilder.java │ │ ├── DocumentTestBuilder.java │ │ ├── ImageTestBuilder.java │ │ └── NumericTestBuilder.java │ │ └── TestClasses │ │ ├── ClientTestClass.java │ │ ├── ColorItemTestClass.java │ │ ├── ContractTestClass.java │ │ ├── DocumentTestClass.java │ │ ├── ImageTestClass.java │ │ ├── ManagerTestClass.java │ │ ├── MessageTestClass.java │ │ ├── NumericTestClass.java │ │ ├── SenderTestClass.java │ │ └── SignPersonTestClass.java │ └── JavaPorting │ ├── AI-powered_Features │ └── WorkingWithAI.java │ ├── CsPorterConfig.xml │ ├── CsPorterReport.xml │ ├── DocsExamplesBase.java │ ├── File_formats_and_conversions │ ├── BaseConversions.java │ ├── Complex_examples_and_helpers │ │ └── WorkingWithDocumentInDatabase.java │ ├── Load_options │ │ ├── WorkingWithHtmlLoadOptions.java │ │ ├── WorkingWithLoadOptions.java │ │ ├── WorkingWithPdfLoadOptions.java │ │ ├── WorkingWithRtfLoadOptions.java │ │ └── WorkingWithTxtLoadOptions.java │ ├── Save_options │ │ ├── Working with DocSaveOptions.java │ │ ├── Working with HtmlFixedSaveOptions.java │ │ ├── Working with HtmlSaveOptions.java │ │ ├── Working with ImageSaveOptions.java │ │ ├── Working with MarkdownSaveOptions.java │ │ ├── Working with OdtSaveOptions.java │ │ ├── Working with OoxmlSaveOptions.java │ │ ├── Working with PclSaveOptions.java │ │ ├── Working with PdfSaveOptions.java │ │ ├── Working with RtfSaveOptions.java │ │ ├── Working with TxtSaveOptions.java │ │ ├── WorkingWithDocSaveOptions.java │ │ ├── WorkingWithHtmlFixedSaveOptions.java │ │ ├── WorkingWithHtmlSaveOptions.java │ │ ├── WorkingWithImageSaveOptions.java │ │ ├── WorkingWithMarkdownSaveOptions.java │ │ ├── WorkingWithOdtSaveOptions.java │ │ ├── WorkingWithOoxmlSaveOptions.java │ │ ├── WorkingWithPclSaveOptions.java │ │ ├── WorkingWithPdfSaveOptions.java │ │ ├── WorkingWithRtfSaveOptions.java │ │ └── WorkingWithTxtSaveOptions.java │ └── WorkingWithFileFormat.java │ ├── Getting_started │ └── ApplyLicense.java │ ├── LINQ_Reporting_Engine │ ├── BaseOperations.java │ ├── BuildOptions.java │ ├── Charts.java │ ├── Helpers │ │ ├── Common.java │ │ └── Data_Source_Objects │ │ │ ├── BackgroundColor.java │ │ │ ├── Client.java │ │ │ ├── Contract.java │ │ │ ├── Manager.java │ │ │ ├── PointData.java │ │ │ └── Sender.java │ ├── Lists.java │ └── Tables.java │ ├── Mail_Merge_And_Reporting │ ├── BaseOperations.java │ ├── Complex_examples_and_helpers │ │ ├── ApplyCustomLogicToEmptyRegions.java │ │ ├── CreateMailMergeTemplate.java │ │ └── NestedMailMergeCustom.java │ ├── WorkingWithCleanupOptions.java │ ├── WorkingWithFields.java │ └── WorkingWithXMLData.java │ ├── Programming_with_documents │ ├── Contents_Management │ │ ├── ExtractContent.java │ │ ├── ExtractContentHelper.java │ │ ├── FindAndReplace.java │ │ ├── RemoveContent.java │ │ ├── WorkingWithBookmarks.java │ │ ├── WorkingWithRanges.java │ │ ├── WorkingWithSDT.java │ │ ├── WorkingWithStylesAndThemes.java │ │ └── WorkingWithTableOfContent.java │ ├── EnableOpenTypeFeatures.java │ ├── Protect_or_encrypt_document │ │ ├── DocumentProtection.java │ │ └── WorkingWithDigitalSinatures.java │ ├── Split_documents │ │ ├── PageSplitter.java │ │ ├── SplitDocument.java │ │ └── SplitIntoHtmlPages.java │ ├── WorkingWithComments.java │ ├── WorkingWithFields.java │ ├── WorkingWithFonts.java │ ├── WorkingWithFootnoteAndEndnote.java │ ├── WorkingWithFormFields.java │ ├── WorkingWithHeadersAndFooters.java │ ├── WorkingWithHyphenation.java │ ├── WorkingWithList.java │ ├── WorkingWithMarkdown.java │ ├── WorkingWithNode.java │ ├── WorkingWithOleObjectsAndActiveX.java │ ├── WorkingWithRevisions.java │ ├── WorkingWithSection.java │ ├── WorkingWithTextboxes.java │ ├── WorkingWithVBAMacros.java │ ├── Working_with_document │ │ ├── AddContentUsingDocumentBuilder.java │ │ ├── CloneAndCombineDocuments.java │ │ ├── CompareDocuments.java │ │ ├── DocumentFormatting.java │ │ ├── JoinAndAppendDocuments.java │ │ ├── WorkingWithDocumentOptionsAndSettings.java │ │ ├── WorkingWithDocumentProperties.java │ │ └── WorkingWithWebExtension.java │ ├── Working_with_graphic_elements │ │ ├── CustomBarcodeGenerator.java │ │ ├── WorkingWithBarcodeGenerator.java │ │ ├── WorkingWithCharts.java │ │ ├── WorkingWithImages.java │ │ ├── WorkingWithOfficeMath.java │ │ ├── WorkingWithShapes.java │ │ └── WorkingWithWatermark.java │ └── Working_with_tables │ │ ├── WorkingWithTableStylesAndFormatting.java │ │ └── WorkingWithTables.java │ └── Rendering_and_printing │ ├── Complex_examples_and_helpers │ ├── EnumerateLayoutElements.java │ └── PageLayoutHelper.java │ ├── PrintDocuments.java │ └── RenderingShapes.java ├── LICENSE ├── Plugins ├── Aspose-Words-Java-for-NetBeans(Maven) │ ├── LICENSE │ ├── README.md │ ├── Release Notes.html │ └── src │ │ ├── com │ │ └── aspose │ │ │ └── words │ │ │ └── maven │ │ │ ├── Aspose.png │ │ │ ├── AsposeMavenBasicPanelVisual.form │ │ │ ├── AsposeMavenBasicPanelVisual.java │ │ │ ├── AsposeMavenBasicWizardPanel.java │ │ │ ├── AsposeMavenProject.zip │ │ │ ├── AsposeMavenProjectWizardIterator.java │ │ │ ├── AsposeWordsMavenDescription.html │ │ │ ├── Bundle.properties │ │ │ ├── MavenSettings.java │ │ │ ├── artifacts │ │ │ ├── Metadata.java │ │ │ ├── ObjectFactory.java │ │ │ ├── maven-metada.xml │ │ │ └── maven-metadata.xsd │ │ │ ├── examples │ │ │ ├── AsposeExamplePanel.java │ │ │ ├── AsposeExampleWizard.html │ │ │ ├── AsposeExampleWizardIterator.java │ │ │ ├── AsposeExampleWizardPanel.java │ │ │ ├── Bundle.properties │ │ │ └── CustomMutableTreeNode.java │ │ │ └── utils │ │ │ ├── AbstractTask.java │ │ │ ├── AsposeConstants.java │ │ │ ├── AsposeJavaAPI.java │ │ │ ├── AsposeMavenProjectManager.java │ │ │ ├── AsposeWordsJavaAPI.java │ │ │ ├── FormatExamples.java │ │ │ ├── GitHelper.java │ │ │ └── TasksExecutor.java │ │ └── resources │ │ └── long_banner.png ├── Aspose.Words Java for dotCMS │ └── AsposeDotCMSExportToWord.servlet │ │ ├── .gradle │ │ └── 1.8 │ │ │ └── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── outputFileStates.bin │ │ │ └── taskArtifacts.bin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aspose │ │ │ └── dotcms │ │ │ └── words │ │ │ ├── Activator.java │ │ │ ├── Constants.java │ │ │ ├── ExportToWordServlet.java │ │ │ └── TestFilter.java │ │ └── resources │ │ └── libs │ │ └── aspose-words-16.2.0-jdk16.jar ├── Aspose_Words_Java_for_Docx4j │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aspose │ │ │ └── words │ │ │ └── examples │ │ │ ├── Utils.java │ │ │ ├── asposefeatures │ │ │ ├── documents │ │ │ │ ├── clonedocuments │ │ │ │ │ └── AsposeCloneDoc.java │ │ │ │ ├── movingcursorindocs │ │ │ │ │ └── AsposeMovingCursor.java │ │ │ │ ├── protectdocuments │ │ │ │ │ └── AsposeProtectDoc.java │ │ │ │ ├── setpageborders │ │ │ │ │ └── AsposePageBorders.java │ │ │ │ ├── trackchanges │ │ │ │ │ └── AsposeTrackChanges.java │ │ │ │ └── usingcontrolcharacters │ │ │ │ │ └── AsposeUseControlCharacters.java │ │ │ ├── loadingsavingandconverting │ │ │ │ ├── checkformatcompatibility │ │ │ │ │ └── AsposeCheckFormatCompatibility.java │ │ │ │ ├── digitalsignature │ │ │ │ │ └── AsposeDigitalSignatures.java │ │ │ │ └── loadtxtfile │ │ │ │ │ └── AsposeLoadTxtFile.java │ │ │ ├── mailmerge │ │ │ │ └── mailmergefromxmldatasource │ │ │ │ │ ├── XMLMailMerge.java │ │ │ │ │ ├── XmlMailMergeDataSet.java │ │ │ │ │ └── XmlMailMergeDataTable.java │ │ │ ├── renderingandprinting │ │ │ │ └── specifydefaultfonts │ │ │ │ │ └── AsposeSpecifyDefaultFontswhileRendering.java │ │ │ └── tables │ │ │ │ ├── autofitsettingstotable │ │ │ │ └── AsposeTableAutoFitSettings.java │ │ │ │ ├── joiningtables │ │ │ │ └── AsposeJoiningTables.java │ │ │ │ ├── repeatheaderrow │ │ │ │ └── AsposeRepeatHeaderRow.java │ │ │ │ └── splittables │ │ │ │ └── AsposeSplittingTables.java │ │ │ └── featurescomparison │ │ │ ├── bookmarks │ │ │ ├── addbookmark │ │ │ │ ├── AsposeBookmarks.java │ │ │ │ └── Docx4jBookmarkAdd.java │ │ │ └── deletebookmark │ │ │ │ ├── AsposeBookmarksDelete.java │ │ │ │ └── Docx4jBookmarksDeleter.java │ │ │ ├── documents │ │ │ ├── accessdocproperties │ │ │ │ ├── AsposeWorkingWithDocProps.java │ │ │ │ └── Docx4jWorkingWithDocProps.java │ │ │ ├── addimage │ │ │ │ ├── AsposeInsertImage.java │ │ │ │ └── Docx4jImageAdd.java │ │ │ ├── addwatermark │ │ │ │ ├── AsposeAddWatermark.java │ │ │ │ └── Docx4jAddWatermark.java │ │ │ ├── comments │ │ │ │ ├── AsposeComments.java │ │ │ │ └── Docx4jCommentsSample.java │ │ │ ├── converttoformats │ │ │ │ ├── AsposeConvertToFormats.java │ │ │ │ ├── Docx4jConvertOutHtml.java │ │ │ │ └── SampleDocument.java │ │ │ ├── converttopdf │ │ │ │ ├── AsposeConvertToFormats.java │ │ │ │ ├── Docx4jConvertToPDF.java │ │ │ │ └── SampleDocument.java │ │ │ ├── createnewdoc │ │ │ │ ├── AsposeNewDocument.java │ │ │ │ └── Docx4jNewDocument.java │ │ │ ├── inserthyperlinks │ │ │ │ ├── AsposeAddHyperlink.java │ │ │ │ └── Docx4jHyperlinks.java │ │ │ ├── inserttableofcontents │ │ │ │ ├── AsposeTableOfContents.java │ │ │ │ └── Docx4jTableOfContents.java │ │ │ └── mergedocs │ │ │ │ ├── AsposeAppendDocs.java │ │ │ │ └── Docx4jMergeDocx.java │ │ │ └── headerfooter │ │ │ ├── addfooter │ │ │ ├── AsposeFooters.java │ │ │ └── Docx4jFooterCreate.java │ │ │ ├── addheader │ │ │ ├── AsposeHeaders.java │ │ │ └── Docx4jHeaderCreate.java │ │ │ └── removeheaderfooter │ │ │ ├── AsposeHeaderFooterRemove.java │ │ │ └── Docx4jHeaderFooterRemove.java │ │ └── resources │ │ └── com │ │ └── aspose │ │ └── words │ │ └── examples │ │ ├── asposefeatures │ │ ├── documents │ │ │ ├── clonedocuments │ │ │ │ └── AsposeCloneDoc │ │ │ │ │ └── document.doc │ │ │ ├── movingcursorindocs │ │ │ │ └── AsposeMovingCursor │ │ │ │ │ └── document.doc │ │ │ ├── protectdocuments │ │ │ │ └── AsposeProtectDoc │ │ │ │ │ └── document.doc │ │ │ └── trackchanges │ │ │ │ └── AsposeTrackChanges │ │ │ │ └── trackDoc.doc │ │ ├── loadingsavingandconverting │ │ │ ├── checkformatcompatibility │ │ │ │ └── AsposeCheckFormatCompatibility │ │ │ │ │ ├── Customers.xml │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── document.doc │ │ │ │ │ └── document.docx │ │ │ ├── digitalsignature │ │ │ │ └── AsposeDigitalSignatures │ │ │ │ │ └── document.docx │ │ │ └── loadtxtfile │ │ │ │ └── AsposeLoadTxtFile │ │ │ │ └── LoadTxt.txt │ │ ├── mailmerge │ │ │ └── mailmergefromxmldatasource │ │ │ │ └── XMLMailMerge │ │ │ │ ├── Customers.xml │ │ │ │ └── mergeDoc.doc │ │ ├── renderingandprinting │ │ │ └── specifydefaultfonts │ │ │ │ └── AsposeSpecifyDefaultFontswhileRendering │ │ │ │ └── document.doc │ │ └── tables │ │ │ ├── autofitsettingstotable │ │ │ └── AsposeTableAutoFitSettings │ │ │ │ └── tableDoc.doc │ │ │ ├── joiningtables │ │ │ └── AsposeJoiningTables │ │ │ │ └── tableDoc.doc │ │ │ └── splittables │ │ │ └── AsposeSplittingTables │ │ │ └── tableDoc.doc │ │ └── featurescomparison │ │ ├── bookmarks │ │ ├── addbookmark │ │ │ └── Docx4jBookmarkAdd │ │ │ │ └── Docx4j_BookmarkAdd.docx │ │ └── deletebookmark │ │ │ ├── AsposeBookmarksDelete │ │ │ └── Aspose_Bookmark.doc │ │ │ └── Docx4jBookmarksDeleter │ │ │ └── Docx4j_BookmarkAdd.docx │ │ ├── documents │ │ ├── accessdocproperties │ │ │ ├── AsposeWorkingWithDocProps │ │ │ │ └── document.doc │ │ │ └── Docx4jWorkingWithDocProps │ │ │ │ └── document.docx │ │ ├── addimage │ │ │ ├── AsposeInsertImage │ │ │ │ └── background.jpg │ │ │ └── Docx4jImageAdd │ │ │ │ └── java_logo.png │ │ ├── addwatermark │ │ │ ├── AsposeAddWatermark │ │ │ │ └── document.doc │ │ │ └── Docx4jAddWatermark │ │ │ │ └── greentick.png │ │ ├── comments │ │ │ └── Docx4jCommentsSample │ │ │ │ └── Docx4j_CommentsSample.docx │ │ ├── converttoformats │ │ │ ├── AsposeConvertToFormats │ │ │ │ └── document.doc │ │ │ └── Docx4jConvertOutHtml │ │ │ │ └── document.docx │ │ ├── converttopdf │ │ │ ├── AsposeConvertToFormats │ │ │ │ └── document.doc │ │ │ └── Docx4jConvertToPDF │ │ │ │ └── document.docx │ │ └── mergedocs │ │ │ ├── AsposeAppendDocs │ │ │ ├── doc1.doc │ │ │ └── doc2.doc │ │ │ └── Docx4jMergeDocx │ │ │ ├── doc1.docx │ │ │ └── doc2.docx │ │ └── headerfooter │ │ ├── addfooter │ │ └── Docx4jFooterCreate │ │ │ └── java_logo.png │ │ ├── addheader │ │ └── Docx4jHeaderCreate │ │ │ └── java_logo.png │ │ └── removeheaderfooter │ │ ├── AsposeHeaderFooterRemove │ │ └── AsposeHeaderFooter.docx │ │ └── Docx4jHeaderFooterRemove │ │ └── Docx4jHeaderFooter.docx ├── Aspose_Words_Java_for_Eclipse_Maven │ ├── AsposeWordsEclipseFeature │ │ ├── .project │ │ ├── build.properties │ │ └── feature.xml │ ├── AsposeWordsEclipsePlugin │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── resources │ │ │ ├── Aspose.png │ │ │ ├── classpath-template.txt │ │ │ ├── long_banner.png │ │ │ ├── org-eclipse-jdt-core.txt │ │ │ └── pom-xml-template.txt │ │ └── src │ │ │ ├── com │ │ │ └── aspose │ │ │ │ └── words │ │ │ │ ├── Activator.java │ │ │ │ ├── MavenSettings.java │ │ │ │ └── maven │ │ │ │ ├── AsposeMavenProjectSupport.java │ │ │ │ ├── AsposeMavenProjectWizard.java │ │ │ │ ├── AsposeMavenProjectWizardPage.java │ │ │ │ ├── artifacts │ │ │ │ ├── Metadata.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── maven-metada.xml │ │ │ │ └── maven-metadata.xsd │ │ │ │ ├── examples │ │ │ │ ├── AsposeExampleSupport.java │ │ │ │ ├── AsposeExampleWizard.java │ │ │ │ └── AsposeExampleWizardPage.java │ │ │ │ └── utils │ │ │ │ ├── AsposeConstants.java │ │ │ │ ├── AsposeJavaAPI.java │ │ │ │ ├── AsposeMavenProjectManager.java │ │ │ │ ├── AsposeWordsJavaAPI.java │ │ │ │ ├── FormatExamples.java │ │ │ │ ├── GitHelper.java │ │ │ │ └── MavenSettings.java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── wb │ │ │ └── swt │ │ │ └── SWTResourceManager.java │ ├── AsposeWordsEclipseSite │ │ ├── .project │ │ └── site.xml │ ├── LICENSE │ ├── README.md │ └── Release Notes.html ├── Aspose_Words_Java_for_IntelliJ(Maven) │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ ├── Aspose_Pty_Ltd.xml │ │ │ └── profiles_settings.xml │ │ ├── dictionaries │ │ │ └── Adeel_Ilyas.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Aspose.Words Java for IntelliJ (Maven).iml │ ├── META-INF │ │ └── plugin.xml │ ├── README.md │ ├── lib │ │ └── org.eclipse.jgit-3.4.1.201406201815-r.jar │ └── src │ │ ├── Bundle.properties │ │ ├── com │ │ └── aspose │ │ │ ├── examples │ │ │ ├── AsposeExampleAction.java │ │ │ ├── AsposeExampleCallback.java │ │ │ ├── AsposeExampleDialog.java │ │ │ ├── AsposeExamplePanel.java │ │ │ └── CustomMutableTreeNode.java │ │ │ ├── maven │ │ │ └── apis │ │ │ │ └── artifacts │ │ │ │ ├── Metadata.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── maven-metada.xml │ │ │ │ └── maven-metadata.xsd │ │ │ ├── utils │ │ │ ├── AsposeConstants.java │ │ │ ├── AsposeJavaAPI.java │ │ │ ├── AsposeMavenProjectManager.java │ │ │ ├── AsposeMavenUtil.java │ │ │ ├── AsposeWordsJavaAPI.java │ │ │ ├── FormatExamples.java │ │ │ ├── GitHelper.java │ │ │ └── execution │ │ │ │ ├── CallBackHandler.java │ │ │ │ ├── ModalTaskImpl.java │ │ │ │ └── RunnableHelper.java │ │ │ └── wizards │ │ │ └── maven │ │ │ ├── AsposeIntroWizardStep.java │ │ │ ├── AsposeMavenModuleBuilder.java │ │ │ ├── AsposeMavenModuleBuilderHelper.java │ │ │ ├── AsposeMavenModuleWizardStep.form │ │ │ ├── AsposeMavenModuleWizardStep.java │ │ │ ├── CreateMavenProjectCallback.java │ │ │ ├── DownloadExamplesCallback.java │ │ │ └── MavenId.java │ │ ├── icons │ │ └── AsposeIcons.java │ │ └── resources │ │ ├── aspose.png │ │ ├── asposeMedium.png │ │ ├── asposeSmall.png │ │ ├── long_bannerIntelliJ.png │ │ └── maven │ │ ├── compiler.xml │ │ └── untitled.iml ├── Aspose_Words_Java_for_Jython │ ├── LICENSE │ ├── README.md │ ├── asposewords │ │ ├── __init__.py │ │ ├── loading_saving │ │ │ ├── CheckFormat.py │ │ │ ├── ConvertToFormats.py │ │ │ ├── DigitalSignatures.py │ │ │ └── LoadTxtFile.py │ │ ├── programming_documents │ │ │ ├── AddWatermark.py │ │ │ ├── AppendDocument.py │ │ │ ├── AutoFitTables.py │ │ │ ├── Bookmarks.py │ │ │ ├── CloneDocument.py │ │ │ ├── ExtractContent.py │ │ │ ├── ExtractContentBasedOnStyles.py │ │ │ ├── InsertBarcode.py │ │ │ ├── InsertImage.py │ │ │ ├── InsertNestedFields.py │ │ │ ├── JoiningTables.py │ │ │ ├── MovingCursor.py │ │ │ ├── PageBorders.py │ │ │ ├── ProcessComments.py │ │ │ ├── ProtectDocument.py │ │ │ ├── RemoveBreaks.py │ │ │ ├── RemoveField.py │ │ │ ├── SplitTables.py │ │ │ └── TrackChanges.py │ │ ├── quickstart │ │ │ ├── AppendDocuments.py │ │ │ ├── ApplyLicense.py │ │ │ ├── DocToPdf.py │ │ │ ├── FindAndReplace.py │ │ │ ├── HelloWorld.py │ │ │ ├── LoadAndSaveToDisk.py │ │ │ ├── LoadAndSaveToStream.py │ │ │ ├── SimpleMailMerge.py │ │ │ ├── UpdateFields.py │ │ │ └── WorkingWithNodes.py │ │ └── rendering_printing │ │ │ ├── RenderShapes.py │ │ │ └── SaveAsMultipageTiff.py │ ├── data │ │ ├── loading_saving │ │ │ ├── CheckFormat │ │ │ │ ├── Test File (JPG).jpg │ │ │ │ ├── Test File (MHTML).mhtml │ │ │ │ ├── Test File (WordML).xml │ │ │ │ ├── Test File (XML).xml │ │ │ │ ├── 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 (odt).odt │ │ │ │ ├── Test File (pre97).doc │ │ │ │ └── Test File (rtf).rtf │ │ │ ├── LoadTxt.txt │ │ │ └── document.doc │ │ ├── programming_documents │ │ │ ├── RemoveField.doc │ │ │ ├── Template.doc │ │ │ ├── TestDefect1352.doc │ │ │ ├── TestFile.Destination.doc │ │ │ ├── TestFile.Source.doc │ │ │ ├── TestFile.doc │ │ │ ├── TestRemoveBreaks.doc │ │ │ ├── background.jpg │ │ │ ├── barcode.png │ │ │ ├── document.doc │ │ │ ├── tableDoc.doc │ │ │ └── trackDoc.doc │ │ ├── quickstart │ │ │ ├── Document.doc │ │ │ ├── MailMerge.doc │ │ │ ├── ReplaceSimple.doc │ │ │ ├── TestFile.Destination.doc │ │ │ ├── TestFile.Source.doc │ │ │ └── TestFile.doc │ │ └── rendering_printing │ │ │ ├── TestFile.doc │ │ │ └── TestFile.docx │ └── setup.py ├── Aspose_Words_Java_for_PHP │ ├── README.md │ ├── index.php │ └── src │ │ ├── loadingandsaving │ │ ├── checkformat │ │ │ └── php │ │ │ │ └── CheckFormat.php │ │ └── pagessplitter │ │ │ └── documentpagesplitter │ │ │ ├── DocumentPageSplitter.php │ │ │ ├── PageNumberFinder.php │ │ │ ├── PageSplitter.php │ │ │ └── SectionSplitter.php │ │ ├── mailmergeandreporting │ │ ├── applycustomlogictoemptyregions │ │ │ ├── data │ │ │ │ └── TestFile.doc │ │ │ └── php │ │ │ │ └── ApplyCustomLogicToEmptyRegions.php │ │ └── mailmergeformfields │ │ │ ├── data │ │ │ └── Template.doc │ │ │ └── php │ │ │ └── MailMergeFormFields.php │ │ ├── programmingwithdocuments │ │ ├── joiningandappending │ │ │ ├── data │ │ │ │ ├── TestFile.Destination.doc │ │ │ │ ├── TestFile.DestinationList.doc │ │ │ │ ├── TestFile.Source.doc │ │ │ │ ├── TestFile.SourceList.doc │ │ │ │ └── TestFile.SourcePageSetup.doc │ │ │ └── php │ │ │ │ └── AppendDocument.php │ │ ├── usingfindandreplace │ │ │ └── findandhighlight │ │ │ │ ├── data │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ └── FindAndHighlight.php │ │ ├── workingwithbookmarks │ │ │ ├── copybookmarkedtext │ │ │ │ ├── data │ │ │ │ │ └── Template.doc │ │ │ │ └── php │ │ │ │ │ └── CopyBookmarkedText.php │ │ │ └── untanglerowbookmarks │ │ │ │ ├── data │ │ │ │ └── TestDefect1352.doc │ │ │ │ └── php │ │ │ │ └── UntangleRowBookmarks.php │ │ ├── workingwithcomments │ │ │ └── processcomments │ │ │ │ ├── data │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ └── ProcessComments.php │ │ ├── workingwithdocument │ │ │ ├── extractcontent │ │ │ │ ├── data │ │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ │ └── ExtractContent.php │ │ │ └── removebreaks │ │ │ │ ├── data │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ └── RemoveBreaks.php │ │ ├── workingwithfields │ │ │ ├── Insertnestedfields │ │ │ │ └── php │ │ │ │ │ └── InsertNestedFields.php │ │ │ ├── removefield │ │ │ │ ├── data │ │ │ │ │ └── Field.RemoveField.doc │ │ │ │ └── php │ │ │ │ │ └── RemoveField.php │ │ │ └── replacefieldswithstatictext │ │ │ │ └── php │ │ │ │ └── ReplaceFieldsWithStaticText.php │ │ ├── workingwithimages │ │ │ ├── addwatermark │ │ │ │ ├── data │ │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ │ └── AddWatermark.php │ │ │ └── compressimages │ │ │ │ ├── data │ │ │ │ └── Test.docx │ │ │ │ └── php │ │ │ │ └── CompressImages.php │ │ ├── workingwithstyles │ │ │ └── extractcontentbasedonstyles │ │ │ │ ├── data │ │ │ │ └── TestFile.doc │ │ │ │ └── php │ │ │ │ └── ExtractContentBasedOnStyles.php │ │ └── workingwithtables │ │ │ ├── data │ │ │ └── TestFile.doc │ │ │ └── php │ │ │ └── AutoFitTables.php │ │ └── quickstart │ │ ├── appenddocuments │ │ ├── data │ │ │ ├── TestFile.Destination.doc │ │ │ └── TestFile.Source.doc │ │ └── php │ │ │ └── AppendDocuments.php │ │ ├── applylicense │ │ └── php │ │ │ └── ApplyLicense.php │ │ ├── findandreplace │ │ ├── data │ │ │ └── ReplaceSimple.doc │ │ └── php │ │ │ └── FindAndReplace.php │ │ ├── helloworld │ │ └── php │ │ │ └── HelloWorld.php │ │ ├── loadandsavetodisk │ │ ├── data │ │ │ └── Document.doc │ │ └── php │ │ │ └── LoadAndSaveToDisk.php │ │ ├── loadandsavetostream │ │ ├── data │ │ │ └── Document.doc │ │ └── php │ │ │ └── LoadAndSaveToStream.php │ │ ├── simplemailmerge │ │ ├── data │ │ │ └── Template.doc │ │ └── php │ │ │ └── SimpleMailMerge.php │ │ ├── updatefields │ │ └── php │ │ │ └── UpdateFields.php │ │ └── workingwithnodes │ │ └── php │ │ └── WorkingWithNodes.php ├── Aspose_Words_Java_for_Python │ ├── default.py │ ├── loadingandsaving │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── mailmergeandreporting │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── programmingwithdocuments │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── quickstart │ │ ├── __init__.py │ │ └── __init__.pyc │ └── tests │ │ ├── loadandsaving │ │ └── checkformat │ │ │ ├── CheckFormat.py │ │ │ └── data │ │ │ ├── Test File (HTML).html │ │ │ ├── Test File (JPG).jpg │ │ │ ├── Test File (MHTML).mhtml │ │ │ ├── Test File (WordML).xml │ │ │ ├── Test File (XML).xml │ │ │ ├── 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 (odt).odt │ │ │ ├── Test File (pre97).doc │ │ │ └── Test File (rtf).rtf │ │ ├── mailmergeandreporting │ │ └── mailmergeformfields │ │ │ ├── MailMergeFormFields.py │ │ │ └── data │ │ │ └── Template.doc │ │ ├── programmingwithdocuments │ │ ├── joiningandappending │ │ │ ├── AppendDocument.py │ │ │ └── data │ │ │ │ ├── TestFile.Destination.doc │ │ │ │ ├── TestFile.DestinationList.doc │ │ │ │ ├── TestFile.Source.doc │ │ │ │ ├── TestFile.SourceList.doc │ │ │ │ └── TestFile.SourcePageSetup.doc │ │ ├── workingwithbookmarks │ │ │ ├── copybookmarkedtext │ │ │ │ ├── CopyBookmarkedText.py │ │ │ │ └── data │ │ │ │ │ └── Template.doc │ │ │ └── untanglerowbookmarks │ │ │ │ ├── UntangleRowBookmarks.py │ │ │ │ └── data │ │ │ │ └── TestDefect1352.doc │ │ ├── workingwithcomments │ │ │ └── processcomments │ │ │ │ └── ProcessComments │ │ │ │ ├── ProcessComments.py │ │ │ │ └── data │ │ │ │ └── TestFile.doc │ │ ├── workingwithdocument │ │ │ ├── extractcontent │ │ │ │ ├── ExtractContent.py │ │ │ │ └── data │ │ │ │ │ └── TestFile.doc │ │ │ └── removebreaks │ │ │ │ ├── RemoveBreaks.py │ │ │ │ └── data │ │ │ │ └── TestFile.doc │ │ ├── workingwithfields │ │ │ ├── insertnestedfields │ │ │ │ └── InsertNestedFields.py │ │ │ └── removefield │ │ │ │ ├── RemoveField.py │ │ │ │ └── data │ │ │ │ └── Field.RemoveField.doc │ │ ├── workingwithimages │ │ │ └── addwatermark │ │ │ │ ├── AddWatermark.py │ │ │ │ └── data │ │ │ │ └── TestFile.doc │ │ ├── workingwithstyles │ │ │ └── extractcontentbasedonstyles │ │ │ │ ├── ExtractContentBasedOnStyles.py │ │ │ │ └── data │ │ │ │ └── TestFile.doc │ │ └── workingwithtables │ │ │ └── autofittables │ │ │ ├── AutoFitTables.py │ │ │ └── data │ │ │ └── TestFile.doc │ │ └── quickstart │ │ ├── HelloWorld │ │ └── HelloWorld.py │ │ ├── LoadAndsaveToStream │ │ ├── LoadAndSaveToStream.py │ │ └── data │ │ │ └── Document.doc │ │ ├── appenddocument │ │ ├── appenddocument.py │ │ └── data │ │ │ ├── TestFile.Destination.doc │ │ │ └── TestFile.Source.doc │ │ ├── applylicense │ │ └── ApplyLicense.py │ │ ├── doc2pdf │ │ ├── data │ │ │ └── Template.doc │ │ └── doc2pdf.py │ │ ├── findandreplace │ │ ├── data │ │ │ └── ReplaceSimple.doc │ │ └── findandreplace.py │ │ ├── loadandsavetodisk │ │ ├── LoadAndSaveToDisk.py │ │ └── data │ │ │ └── Document.doc │ │ ├── simplemailmerge │ │ ├── SimpleMailMerge.py │ │ └── data │ │ │ └── Template.doc │ │ ├── updatefields │ │ └── UpdateFields.py │ │ └── workingwithnodes │ │ └── WorkingWithNodes.py ├── Aspose_Words_Java_for_Ruby │ ├── Gempackage │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── asposewordsjavaforruby.gemspec │ ├── config │ │ └── aspose.yml │ ├── data │ │ ├── Field.RemoveField.doc │ │ ├── LoadTxt.txt │ │ ├── Template.doc │ │ ├── Test.Styles.doc │ │ ├── TestAutofittables.doc │ │ ├── TestComments.doc │ │ ├── TestCompressImages.docx │ │ ├── TestFile.doc │ │ ├── TestWatermark.doc │ │ ├── bookmarks │ │ │ ├── Template.doc │ │ │ └── TestDefect1352.doc │ │ ├── document │ │ │ ├── TestFile.doc │ │ │ └── TestRemoveBreaks.doc │ │ ├── joiningandappending │ │ │ ├── TestFile.Destination.doc │ │ │ ├── TestFile.DestinationList.doc │ │ │ ├── TestFile.Source.doc │ │ │ ├── TestFile.SourceList.doc │ │ │ └── TestFile.SourcePageSetup.doc │ │ ├── mailmerge │ │ │ ├── Template.doc │ │ │ └── TestFile.doc │ │ └── quickstart │ │ │ ├── Document.doc │ │ │ ├── HelloWorld.docx │ │ │ ├── MailMerge.doc │ │ │ ├── ReplaceSimple.doc │ │ │ ├── TestFile.Destination.doc │ │ │ └── TestFile.Source.doc │ ├── jars │ │ └── README.md │ ├── lib │ │ ├── asposewordsjavaforruby.rb │ │ └── asposewordsjavaforruby │ │ │ ├── addwatermark.rb │ │ │ ├── appenddoc.rb │ │ │ ├── appenddocument.rb │ │ │ ├── applylicense.rb │ │ │ ├── asposewordsjava.rb │ │ │ ├── autofittables.rb │ │ │ ├── bookmarks.rb │ │ │ ├── checkformat.rb │ │ │ ├── compressimages.rb │ │ │ ├── doc2pdf.rb │ │ │ ├── doctohtml.rb │ │ │ ├── extractcontent.rb │ │ │ ├── findandreplace.rb │ │ │ ├── helloworld.rb │ │ │ ├── imagetopdf.rb │ │ │ ├── insertnestedfields.rb │ │ │ ├── loadandsavetodisk.rb │ │ │ ├── loadandsavetostream.rb │ │ │ ├── loadtxt.rb │ │ │ ├── mergefield.rb │ │ │ ├── nodes.rb │ │ │ ├── processcomments.rb │ │ │ ├── removebreaks.rb │ │ │ ├── removefield.rb │ │ │ ├── saveasmultipagetiff.rb │ │ │ ├── simplemailmerge.rb │ │ │ ├── styles.rb │ │ │ ├── updatefields.rb │ │ │ └── version.rb │ └── licensefile │ │ └── README.md ├── Aspose_Words_for_Apache_POI │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aspose │ │ │ └── words │ │ │ └── examples │ │ │ ├── Utils.java │ │ │ ├── asposefeatures │ │ │ ├── mailmerge │ │ │ │ └── mailmergefromxmldatasource │ │ │ │ │ ├── XMLMailMerge.java │ │ │ │ │ ├── XmlMailMergeDataSet.java │ │ │ │ │ └── XmlMailMergeDataTable.java │ │ │ ├── workingwithbarcode │ │ │ │ └── insertbarcodeoneachpage │ │ │ │ │ └── AsposeInsertBarcodeOnEachPage.java │ │ │ ├── workingwithdocument │ │ │ │ ├── addwatermark │ │ │ │ │ └── AsposeWatermarks.java │ │ │ │ ├── appenddoc │ │ │ │ │ └── AsposeAppendDocs.java │ │ │ │ ├── checkformatcompatibility │ │ │ │ │ └── AsposeCheckFormatCompatibility.java │ │ │ │ ├── clonedoc │ │ │ │ │ └── AsposeCloneDoc.java │ │ │ │ ├── insertpicture │ │ │ │ │ └── AsposeInsertImage.java │ │ │ │ ├── loadtxtfile │ │ │ │ │ └── AsposeLoadTxtFile.java │ │ │ │ ├── movingcursor │ │ │ │ │ └── AsposeMovingCursor.java │ │ │ │ ├── protectdoc │ │ │ │ │ └── AsposeProtectDoc.java │ │ │ │ ├── setpageborders │ │ │ │ │ └── AsposePageBorders.java │ │ │ │ ├── trackchanges │ │ │ │ │ └── AsposeTrackChanges.java │ │ │ │ ├── workingwithbookmarks │ │ │ │ │ └── AsposeBookmarks.java │ │ │ │ └── workingwithdigitalsignature │ │ │ │ │ └── AsposeDigitalSignatures.java │ │ │ ├── workingwithfields │ │ │ │ ├── insertfieldsindoc │ │ │ │ │ └── AsposeInsertFields.java │ │ │ │ └── removefields │ │ │ │ │ └── AsposeRemoveFields.java │ │ │ ├── workingwithtables │ │ │ │ ├── autofitsettingstotable │ │ │ │ │ └── AsposeTableAutoFitSettings.java │ │ │ │ ├── joiningtables │ │ │ │ │ └── AsposeJoiningTables.java │ │ │ │ └── splittables │ │ │ │ │ └── AsposeSplittingTables.java │ │ │ └── workingwithtext │ │ │ │ ├── extractcomments │ │ │ │ └── AsposeExtractComments.java │ │ │ │ ├── findnreplacetxt │ │ │ │ └── AsposeFindnReplace.java │ │ │ │ ├── insertcomments │ │ │ │ └── AsposeInsertComments.java │ │ │ │ ├── removecomments │ │ │ │ └── AsposeRemoveComments.java │ │ │ │ ├── specifydefaultfonts │ │ │ │ └── AsposeSpecifyDefaultFontswhileRendering.java │ │ │ │ └── usingcontrolcharacters │ │ │ │ └── AsposeUseControlCharacters.java │ │ │ └── featurescomparison │ │ │ ├── converter │ │ │ ├── ApacheConvertToFormats.java │ │ │ └── AsposeConvertToFormats.java │ │ │ ├── document │ │ │ ├── ApacheDocumentProperties.java │ │ │ ├── ApacheFormattedText.java │ │ │ ├── ApacheNewDocument.java │ │ │ ├── ApacheOpenExistingDoc.java │ │ │ ├── ApacheSaveDocument.java │ │ │ ├── AsposeDocumentProperties.java │ │ │ ├── AsposeFormattedText.java │ │ │ ├── AsposeNewDocument.java │ │ │ ├── AsposeOpenExistingDoc.java │ │ │ └── AsposeSaveDocument.java │ │ │ ├── headerfooter │ │ │ ├── ApacheFooters.java │ │ │ ├── ApacheHeaders.java │ │ │ ├── AsposeFooters.java │ │ │ └── AsposeHeaders.java │ │ │ ├── images │ │ │ ├── ApacheExtractImages.java │ │ │ ├── ApacheInsertImage.java │ │ │ ├── AsposeExtractImages.java │ │ │ └── AsposeInsertImage.java │ │ │ ├── ranges │ │ │ ├── ApacheDeleteRange.java │ │ │ ├── ApacheInsert.java │ │ │ ├── ApacheRanges.java │ │ │ ├── AsposeDeleteRange.java │ │ │ ├── AsposeInsert.java │ │ │ └── AsposeRanges.java │ │ │ └── tables │ │ │ ├── ApacheCreateTable.java │ │ │ ├── ApacheFormattedTable.java │ │ │ ├── AsposeCreateTable.java │ │ │ └── AsposeFormatedTable.java │ │ └── resources │ │ └── com │ │ └── aspose │ │ └── words │ │ └── examples │ │ ├── asposefeatures │ │ ├── mailmerge │ │ │ └── mailmergefromxmldatasource │ │ │ │ └── XMLMailMerge │ │ │ │ ├── Customers.xml │ │ │ │ └── mergeDoc.doc │ │ ├── workingwithbarcode │ │ │ └── insertbarcodeoneachpage │ │ │ │ └── AsposeInsertBarcodeOnEachPage │ │ │ │ └── barcode.png │ │ ├── workingwithdocument │ │ │ ├── addwatermark │ │ │ │ └── AsposeWatermarks │ │ │ │ │ └── document.doc │ │ │ ├── appenddoc │ │ │ │ └── AsposeAppendDocs │ │ │ │ │ ├── doc1.doc │ │ │ │ │ └── doc2.doc │ │ │ ├── checkformatcompatibility │ │ │ │ └── AsposeCheckFormatCompatibility │ │ │ │ │ ├── document.doc │ │ │ │ │ └── document.docx │ │ │ ├── clonedoc │ │ │ │ └── AsposeCloneDoc │ │ │ │ │ └── document.doc │ │ │ ├── insertpicture │ │ │ │ └── AsposeInsertImage │ │ │ │ │ └── background.jpg │ │ │ ├── loadtxtfile │ │ │ │ └── AsposeLoadTxtFile │ │ │ │ │ └── LoadTxt.txt │ │ │ ├── movingcursor │ │ │ │ └── AsposeMovingCursor │ │ │ │ │ └── document.doc │ │ │ ├── protectdoc │ │ │ │ └── AsposeProtectDoc │ │ │ │ │ └── document.doc │ │ │ ├── trackchanges │ │ │ │ └── AsposeTrackChanges │ │ │ │ │ └── trackDoc.doc │ │ │ └── workingwithdigitalsignature │ │ │ │ └── AsposeDigitalSignatures │ │ │ │ └── document.docx │ │ ├── workingwithtables │ │ │ ├── autofitsettingstotable │ │ │ │ └── AsposeTableAutoFitSettings │ │ │ │ │ └── tableDoc.doc │ │ │ ├── joiningtables │ │ │ │ └── AsposeJoiningTables │ │ │ │ │ └── tableDoc.doc │ │ │ └── splittables │ │ │ │ └── AsposeSplittingTables │ │ │ │ └── tableDoc.doc │ │ └── workingwithtext │ │ │ ├── extractcomments │ │ │ └── AsposeExtractComments │ │ │ │ └── AsposeComments.docx │ │ │ ├── findnreplacetxt │ │ │ └── AsposeFindnReplace │ │ │ │ └── replaceDoc.doc │ │ │ ├── removecomments │ │ │ └── AsposeRemoveComments │ │ │ │ └── AsposeComments.docx │ │ │ └── specifydefaultfonts │ │ │ └── AsposeSpecifyDefaultFontswhileRendering │ │ │ └── document.doc │ │ └── featurescomparison │ │ ├── converter │ │ ├── ApacheConvertToFormats │ │ │ └── document.doc │ │ └── AsposeConvertToFormats │ │ │ └── document.doc │ │ ├── document │ │ ├── ApacheDocumentProperties │ │ │ └── document.doc │ │ ├── ApacheOpenExistingDoc │ │ │ └── document.doc │ │ ├── AsposeDocumentProperties │ │ │ └── document.doc │ │ └── AsposeOpenExistingDoc │ │ │ └── document.doc │ │ ├── headerfooter │ │ ├── ApacheFooters │ │ │ └── AsposeFooter.doc │ │ └── ApacheHeaders │ │ │ └── AsposeHeader.doc │ │ ├── images │ │ ├── ApacheExtractImages │ │ │ └── document.doc │ │ ├── ApacheInsertImage │ │ │ └── aspose.jpg │ │ ├── AsposeExtractImages │ │ │ └── document.doc │ │ └── AsposeInsertImage │ │ │ └── background.jpg │ │ └── ranges │ │ ├── ApacheDeleteRange │ │ └── document.doc │ │ ├── ApacheInsert │ │ └── document.doc │ │ ├── ApacheRanges │ │ └── document.doc │ │ ├── AsposeDeleteRange │ │ └── document.doc │ │ ├── AsposeInsert │ │ ├── background.jpg │ │ └── document.doc │ │ └── AsposeRanges │ │ └── document.doc └── Aspose_Words_for_Struts │ ├── .classpath │ ├── .project │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── books │ │ ├── AsposeAPIHelper.java │ │ ├── BookActions.java │ │ ├── BookForm.java │ │ ├── Books.java │ │ └── ShowBooks.java │ └── webapp │ ├── WEB-INF │ ├── struts-config.xml │ └── web.xml │ ├── images │ └── aspose-struts-logo.jpg │ └── jsp │ └── books │ ├── addbook.jsp │ ├── books.jsp │ ├── editbook.jsp │ └── index.jsp └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/pom.xml -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ApiExampleBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ApiExampleBase.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/DocumentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/DocumentHelper.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExAI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExAI.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExBookmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExBookmarks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExBorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExBorder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExBorderCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExBorderCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExBuildVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExBuildVersion.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExBuildingBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExBuildingBlocks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExCellFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExCellFormat.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExCertificateHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExCertificateHolder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExCharts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExCharts.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExChmLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExChmLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExCleanupOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExCleanupOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExComment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExComment.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExControlChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExControlChar.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocument.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentBase.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentBuilder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentProperties.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDocumentVisitor.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDotNetVsJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDotNetVsJava.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExDrawing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExDrawing.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExEditableRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExEditableRange.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExField.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExFieldOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExFieldOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExFile.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExFont.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExFontSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExFontSettings.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExFormFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExFormFields.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExHeaderFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExHeaderFooter.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExHtmlLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExHtmlLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExHtmlSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExHtmlSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExHyphenation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExHyphenation.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExImage.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExImageSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExImageSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExInline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExInline.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExInlineStory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExInlineStory.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExLayout.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExLicense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExLicense.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExLists.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExLowCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExLowCode.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMailMerge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMailMerge.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMailMergeCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMailMergeCustom.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMailMergeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMailMergeEvent.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMetered.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMetered.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMossDoc2Pdf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMossDoc2Pdf.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExMossRtf2Docx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExMossRtf2Docx.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExNode.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExNodeImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExNodeImporter.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExOdtSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExOdtSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExOoxmlSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExOoxmlSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPageSetup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPageSetup.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExParagraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExParagraph.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExParagraphFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExParagraphFormat.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPclSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPclSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPdfLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPdfLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPdfSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPdfSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPlainTextDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPlainTextDocument.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExPsSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExPsSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRange.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRenameMergeFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRenameMergeFields.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRendering.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRendering.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExReplaceHyperlinks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExReplaceHyperlinks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExReportingEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExReportingEngine.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRevision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRevision.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRtfLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRtfLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExRtfSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExRtfSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExSavingCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExSavingCallback.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExSection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExShape.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExSignDocumentCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExSignDocumentCustom.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExSmartTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExSmartTag.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExStyles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExStyles.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExSvgSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExSvgSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExTabStop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExTabStop.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExTable.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExTableColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExTableColumn.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExThemes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExThemes.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExTxtLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExTxtLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExTxtSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExTxtSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExUtilityClasses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExUtilityClasses.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExVariableCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExVariableCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExVbaProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExVbaProject.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExViewOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExViewOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExXlsxSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExXlsxSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/ExXpsSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/ExXpsSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/PrintTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/PrintTracker.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/Examples/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/Examples/TestUtil.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/src/main/java/TestData/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/src/main/java/TestData/Common.java -------------------------------------------------------------------------------- /Examples/ApiExamples/Java/testng-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/Java/testng-results.xml -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ApiExampleBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ApiExampleBase.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/CsPorterConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/CsPorterConfig.xml -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/CsPorterReport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/CsPorterReport.xml -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/CustomBarcodeGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/CustomBarcodeGenerator.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/DocumentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/DocumentHelper.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExAI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExAI.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExAbsolutePositionTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExAbsolutePositionTab.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBookmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBookmarks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBookmarksOutlineLevelCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBookmarksOutlineLevelCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBorder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBorderCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBorderCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBuildVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBuildVersion.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExBuildingBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExBuildingBlocks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExCellFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExCellFormat.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExCertificateHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExCertificateHolder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExCharts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExCharts.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExChmLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExChmLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExCleanupOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExCleanupOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExComHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExComHelper.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExComment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExComment.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExCompatibilityOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExCompatibilityOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExControlChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExControlChar.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDigitalSignatureCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDigitalSignatureCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDigitalSignatureUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDigitalSignatureUtil.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocument.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocumentBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocumentBase.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocumentBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocumentBuilder.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocumentBuilderImages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocumentBuilderImages.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocumentProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocumentProperties.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDocumentVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDocumentVisitor.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExDrawing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExDrawing.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExEditableRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExEditableRange.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExField.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExFieldOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExFieldOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExFile.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExFont.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExFontSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExFontSettings.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExFormFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExFormFields.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExHeaderFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExHeaderFooter.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExHtmlFixedSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExHtmlFixedSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExHtmlLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExHtmlLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExHtmlSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExHtmlSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExHyphenation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExHyphenation.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExImage.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExImageSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExImageSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExInline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExInline.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExInlineStory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExInlineStory.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExLayout.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExLicense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExLicense.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExLists.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExLowCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExLowCode.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMailMerge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMailMerge.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMailMergeCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMailMergeCustom.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMailMergeCustomNested.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMailMergeCustomNested.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMailMergeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMailMergeEvent.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMarkdownLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMarkdownLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMarkdownSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMarkdownSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMetered.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMetered.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMossDoc2Pdf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMossDoc2Pdf.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExMossRtf2Docx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExMossRtf2Docx.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExNode.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExNodeImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExNodeImporter.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExOdtSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExOdtSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExOoxmlSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExOoxmlSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPageSetup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPageSetup.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExParagraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExParagraph.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExParagraphFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExParagraphFormat.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPclSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPclSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPdfLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPdfLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPdfSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPdfSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPlainTextDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPlainTextDocument.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExPsSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExPsSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRange.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRenameMergeFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRenameMergeFields.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRendering.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRendering.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExReplaceHyperlinks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExReplaceHyperlinks.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExReportingEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExReportingEngine.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRevision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRevision.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRtfLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRtfLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExRtfSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExRtfSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExSavingCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExSavingCallback.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExSection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExShape.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExSignDocumentCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExSignDocumentCustom.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExSmartTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExSmartTag.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExStructuredDocumentTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExStructuredDocumentTag.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExStyles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExStyles.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExSvgSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExSvgSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExTabStop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExTabStop.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExTable.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExTableColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExTableColumn.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExThemes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExThemes.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExTxtLoadOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExTxtLoadOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExTxtSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExTxtSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExUtilityClasses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExUtilityClasses.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExVariableCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExVariableCollection.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExVbaProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExVbaProject.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExViewOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExViewOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExWordML2003SaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExWordML2003SaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExXamlFixedSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExXamlFixedSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExXamlFlowSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExXamlFlowSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExXlsxSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExXlsxSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExXpsSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExXpsSaveOptions.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/ExamplesComparison.cmp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/ExamplesComparison.cmp7 -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/JavaPorting, Examples.foldercomparison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/JavaPorting, Examples.foldercomparison -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/PortExamplesComparison.cmp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/PortExamplesComparison.cmp7 -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/PrintTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/PrintTracker.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/TestData/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/TestData/Common.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/TestData/TestClasses/ClientTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/TestData/TestClasses/ClientTestClass.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/TestData/TestClasses/ImageTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/TestData/TestClasses/ImageTestClass.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/TestData/TestClasses/ShareTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/TestData/TestClasses/ShareTestClass.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/TestUtil.java -------------------------------------------------------------------------------- /Examples/ApiExamples/JavaPorting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/ApiExamples/JavaPorting/readme.txt -------------------------------------------------------------------------------- /Examples/Data/Absolute position tab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Absolute position tab.docx -------------------------------------------------------------------------------- /Examples/Data/ActiveX controls.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/ActiveX controls.docx -------------------------------------------------------------------------------- /Examples/Data/Alte DIN 1451 Mittelschrift.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Alte DIN 1451 Mittelschrift.ttf -------------------------------------------------------------------------------- /Examples/Data/Asian typography.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Asian typography.docx -------------------------------------------------------------------------------- /Examples/Data/Azw3 document.azw3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Azw3 document.azw3 -------------------------------------------------------------------------------- /Examples/Data/Background images (word to pdf).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Background images (word to pdf).pdf -------------------------------------------------------------------------------- /Examples/Data/Background images.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Background images.docx -------------------------------------------------------------------------------- /Examples/Data/Bibliography custom style.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bibliography custom style.xsl -------------------------------------------------------------------------------- /Examples/Data/Bibliography sources.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bibliography sources.docx -------------------------------------------------------------------------------- /Examples/Data/Bibliography.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bibliography.docx -------------------------------------------------------------------------------- /Examples/Data/Big document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Big document.docx -------------------------------------------------------------------------------- /Examples/Data/Blank pages.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Blank pages.docx -------------------------------------------------------------------------------- /Examples/Data/Blank.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Blank.docx -------------------------------------------------------------------------------- /Examples/Data/Bookmarks in headers and footers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bookmarks in headers and footers.docx -------------------------------------------------------------------------------- /Examples/Data/Bookmarks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bookmarks.docx -------------------------------------------------------------------------------- /Examples/Data/Borders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Borders.docx -------------------------------------------------------------------------------- /Examples/Data/Bullet points with alternative font.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Bullet points with alternative font.docx -------------------------------------------------------------------------------- /Examples/Data/Business brochure.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Business brochure.dotx -------------------------------------------------------------------------------- /Examples/Data/CD collection XSL transformation.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/CD collection XSL transformation.xsl -------------------------------------------------------------------------------- /Examples/Data/CD collection data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/CD collection data.xml -------------------------------------------------------------------------------- /Examples/Data/Cell revisions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Cell revisions.docx -------------------------------------------------------------------------------- /Examples/Data/Combo chart.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Combo chart.docx -------------------------------------------------------------------------------- /Examples/Data/Comments.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Comments.docx -------------------------------------------------------------------------------- /Examples/Data/Content-ID.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Content-ID.docx -------------------------------------------------------------------------------- /Examples/Data/Continuous section page numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Continuous section page numbering.docx -------------------------------------------------------------------------------- /Examples/Data/Corrupted document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Corrupted document.docx -------------------------------------------------------------------------------- /Examples/Data/Corrupted footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Corrupted footnotes.docx -------------------------------------------------------------------------------- /Examples/Data/Corrupted image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Corrupted image.docx -------------------------------------------------------------------------------- /Examples/Data/Custom XML part in structured document tag.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom XML part in structured document tag.docx -------------------------------------------------------------------------------- /Examples/Data/Custom font fallback settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom font fallback settings.xml -------------------------------------------------------------------------------- /Examples/Data/Custom list numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom list numbering.docx -------------------------------------------------------------------------------- /Examples/Data/Custom parts OOXML package.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom parts OOXML package.docx -------------------------------------------------------------------------------- /Examples/Data/Custom style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom style.css -------------------------------------------------------------------------------- /Examples/Data/Custom style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Custom style.docx -------------------------------------------------------------------------------- /Examples/Data/DML unique ID compare.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DML unique ID compare.docx -------------------------------------------------------------------------------- /Examples/Data/DML unique ID original.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DML unique ID original.docx -------------------------------------------------------------------------------- /Examples/Data/DataPoint format.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DataPoint format.docx -------------------------------------------------------------------------------- /Examples/Data/Database/Northwind.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/Northwind.accdb -------------------------------------------------------------------------------- /Examples/Data/Database/cat001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat001.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat001.zip -------------------------------------------------------------------------------- /Examples/Data/Database/cat002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat002.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat003.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat004.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat005.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat006.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat007.png -------------------------------------------------------------------------------- /Examples/Data/Database/cat008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Database/cat008.png -------------------------------------------------------------------------------- /Examples/Data/Decorative shapes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Decorative shapes.docx -------------------------------------------------------------------------------- /Examples/Data/Different lists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Different lists.docx -------------------------------------------------------------------------------- /Examples/Data/Digitally signed.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Digitally signed.docx -------------------------------------------------------------------------------- /Examples/Data/Digitally signed.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Digitally signed.odt -------------------------------------------------------------------------------- /Examples/Data/Digitally signed.ott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Digitally signed.ott -------------------------------------------------------------------------------- /Examples/Data/Dirty field.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Dirty field.docx -------------------------------------------------------------------------------- /Examples/Data/Document destination with list.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document destination with list.docx -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/App.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/App.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Body.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Body.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/BookmarkEnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/BookmarkEnd.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/BookmarkStart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/BookmarkStart.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Cell.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Comment.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/CommentRangeEnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/CommentRangeEnd.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/CommentRangeStart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/CommentRangeStart.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/CustomXmlMarkup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/CustomXmlMarkup.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Document.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/DrawingML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/DrawingML.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FieldEnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FieldEnd.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FieldSeparator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FieldSeparator.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FieldStart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FieldStart.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Footer.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Footnote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Footnote.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FormCheckBox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FormCheckBox.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FormDropDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FormDropDown.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FormField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FormField.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/FormTextInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/FormTextInput.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/GroupShape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/GroupShape.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Header.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/HeaderFooter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/HeaderFooter.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/InlineShape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/InlineShape.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Node.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/OfficeMath.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/OfficeMath.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/OleControl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/OleControl.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/OleObject.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/OleObject.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Paragraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Paragraph.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Row.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Row.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Run.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Section.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Section.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Shape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Shape.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/SmartTag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/SmartTag.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/SpecialChar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/SpecialChar.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/StructuredDocumentTag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/StructuredDocumentTag.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/Table.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/aspose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/aspose.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/tlb_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/tlb_1.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/tlb_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/tlb_2.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/tlb_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/tlb_3.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/tlb_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/tlb_4.gif -------------------------------------------------------------------------------- /Examples/Data/Document explorer images/tlb_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document explorer images/tlb_5.gif -------------------------------------------------------------------------------- /Examples/Data/Document insertion 1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document insertion 1.docx -------------------------------------------------------------------------------- /Examples/Data/Document insertion 2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document insertion 2.docx -------------------------------------------------------------------------------- /Examples/Data/Document insertion destination.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document insertion destination.docx -------------------------------------------------------------------------------- /Examples/Data/Document layout.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document layout.docx -------------------------------------------------------------------------------- /Examples/Data/Document source with list.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document source with list.docx -------------------------------------------------------------------------------- /Examples/Data/Document source.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document source.docx -------------------------------------------------------------------------------- /Examples/Data/Document with SDT 1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document with SDT 1.docx -------------------------------------------------------------------------------- /Examples/Data/Document with SDT 2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document with SDT 2.docx -------------------------------------------------------------------------------- /Examples/Data/Document with WebP image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document with WebP image.docx -------------------------------------------------------------------------------- /Examples/Data/Document with ms-its links.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document with ms-its links.chm -------------------------------------------------------------------------------- /Examples/Data/Document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.doc -------------------------------------------------------------------------------- /Examples/Data/Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.docx -------------------------------------------------------------------------------- /Examples/Data/Document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.html -------------------------------------------------------------------------------- /Examples/Data/Document.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.mobi -------------------------------------------------------------------------------- /Examples/Data/Document.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.odt -------------------------------------------------------------------------------- /Examples/Data/Document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Document.xml -------------------------------------------------------------------------------- /Examples/Data/DocumentVisitor-compatible features.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DocumentVisitor-compatible features.docx -------------------------------------------------------------------------------- /Examples/Data/DrawingML shape 3D effects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DrawingML shape 3D effects.docx -------------------------------------------------------------------------------- /Examples/Data/DrawingML shape effects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DrawingML shape effects.docx -------------------------------------------------------------------------------- /Examples/Data/DrawingML shape fallbacks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DrawingML shape fallbacks.docx -------------------------------------------------------------------------------- /Examples/Data/DrawingML text effects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/DrawingML text effects.docx -------------------------------------------------------------------------------- /Examples/Data/EMF.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/EMF.docx -------------------------------------------------------------------------------- /Examples/Data/Embedded font rights.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Embedded font rights.docx -------------------------------------------------------------------------------- /Examples/Data/Embedded font.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Embedded font.doc -------------------------------------------------------------------------------- /Examples/Data/Embedded font.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Embedded font.docx -------------------------------------------------------------------------------- /Examples/Data/Emphases markdown warning.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Emphases markdown warning.docx -------------------------------------------------------------------------------- /Examples/Data/Encoded in UTF-7.txt: -------------------------------------------------------------------------------- 1 | Hello world+ACE- -------------------------------------------------------------------------------- /Examples/Data/Encrypted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Encrypted.docx -------------------------------------------------------------------------------- /Examples/Data/Encrypted.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Encrypted.odt -------------------------------------------------------------------------------- /Examples/Data/Encrypted.ott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Encrypted.ott -------------------------------------------------------------------------------- /Examples/Data/English text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/English text.txt -------------------------------------------------------------------------------- /Examples/Data/Epub document.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Epub document.epub -------------------------------------------------------------------------------- /Examples/Data/Extended properties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Extended properties.docx -------------------------------------------------------------------------------- /Examples/Data/External XML schema.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/External XML schema.docx -------------------------------------------------------------------------------- /Examples/Data/Extract content.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Extract content.docx -------------------------------------------------------------------------------- /Examples/Data/FB2 document.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/FB2 document.fb2 -------------------------------------------------------------------------------- /Examples/Data/Field sample - ADDIN.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - ADDIN.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - ADDRESSBLOCK.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - ADDRESSBLOCK.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - BARCODE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - BARCODE.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - EQ.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - EQ.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - Field with data.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - Field with data.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - INCLUDEPICTURE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - INCLUDEPICTURE.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - MERGEFIELD.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - MERGEFIELD.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - PRINTDATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - PRINTDATE.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - PRIVATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - PRIVATE.docx -------------------------------------------------------------------------------- /Examples/Data/Field sample - TOC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Field sample - TOC.docx -------------------------------------------------------------------------------- /Examples/Data/Find and highlight.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Find and highlight.docx -------------------------------------------------------------------------------- /Examples/Data/Font fallback rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Font fallback rules.xml -------------------------------------------------------------------------------- /Examples/Data/Font substitution rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Font substitution rules.xml -------------------------------------------------------------------------------- /Examples/Data/Footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Footer.docx -------------------------------------------------------------------------------- /Examples/Data/Footnotes and endnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Footnotes and endnotes.docx -------------------------------------------------------------------------------- /Examples/Data/Form fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Form fields.docx -------------------------------------------------------------------------------- /Examples/Data/Format revision.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Format revision.docx -------------------------------------------------------------------------------- /Examples/Data/Formatted elements.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Formatted elements.docx -------------------------------------------------------------------------------- /Examples/Data/Frameset.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Frameset.docx -------------------------------------------------------------------------------- /Examples/Data/German text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/German text.docx -------------------------------------------------------------------------------- /Examples/Data/Get substitution without suffixes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Get substitution without suffixes.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/Document.CompareOptions Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/Document.CompareOptions Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/Document.HyphenationOptions Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/Document.HyphenationOptions Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/Document.UseCurrentDocumentFormatting Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/Document.UseCurrentDocumentFormatting Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.InsertDocument Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.InsertDocument Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.InsertFootnote Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.InsertFootnote Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.MathML Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.MathML Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.MathML Gold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.MathML Gold.pdf -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.NumberFormat Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.NumberFormat Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/DocumentBuilder.SignatureLineProviderId Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/DocumentBuilder.SignatureLineProviderId Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/HyphenationOptions Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/HyphenationOptions Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ImageSaveOptions.BlackAndWhite Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ImageSaveOptions.BlackAndWhite Gold.png -------------------------------------------------------------------------------- /Examples/Data/Golds/MailMerge.CleanUp Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MailMerge.CleanUp Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/MailMerge.CleanupOptions Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MailMerge.CleanupOptions Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/MailMerge.InsertHtml Gold.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MailMerge.InsertHtml Gold.doc -------------------------------------------------------------------------------- /Examples/Data/Golds/MarkdownSaveOptions.ExportOfficeMathAsLatex.Gold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MarkdownSaveOptions.ExportOfficeMathAsLatex.Gold.md -------------------------------------------------------------------------------- /Examples/Data/Golds/MathML Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MathML Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/MathML Gold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/MathML Gold.pdf -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.BackColor Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.BackColor Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.ContextualObjectMemberAccess Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.ContextualObjectMemberAccess Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.CsvData Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.CsvData Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.DataSource Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.DataSource Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.DataSourceWithNestedElements Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.DataSourceWithNestedElements Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.DoNotRemoveEmptyParagraphs Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.DoNotRemoveEmptyParagraphs Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.ExtensionMethods Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.ExtensionMethods Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.InsertImageDynamically(uri) Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.InsertImageDynamically(uri) Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.JsonDataString Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.JsonDataString Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.KnownTypes Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.KnownTypes Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.Operators Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.Operators Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.RemoveEmptyParagraphs Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.RemoveEmptyParagraphs Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.SetPointColorDynamically Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.SetPointColorDynamically Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.SetTextColorDynamically Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.SetTextColorDynamically Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.SourseListNumbering Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.SourseListNumbering Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestBubbleChart Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestBubbleChart Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestChart Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestChart Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestDataTable Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestDataTable Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestLeaveChartSeries Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestLeaveChartSeries Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestNestedDataTable Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestNestedDataTable Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.TestRemoveChartSeries Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.TestRemoveChartSeries Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/ReportingEngine.Total Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/ReportingEngine.Total Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/Shape.OfficeMath Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/Shape.OfficeMath Gold.docx -------------------------------------------------------------------------------- /Examples/Data/Golds/StructuredDocumentTag.CustomXml Gold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Golds/StructuredDocumentTag.CustomXml Gold.docx -------------------------------------------------------------------------------- /Examples/Data/HTML help.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/HTML help.chm -------------------------------------------------------------------------------- /Examples/Data/Header and footer types.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Header and footer types.docx -------------------------------------------------------------------------------- /Examples/Data/Heading pairs and titles of parts.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Heading pairs and titles of parts.docx -------------------------------------------------------------------------------- /Examples/Data/Hebrew text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Hebrew text.txt -------------------------------------------------------------------------------- /Examples/Data/Hidden content.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Hidden content.docx -------------------------------------------------------------------------------- /Examples/Data/Html with FontFace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Html with FontFace.html -------------------------------------------------------------------------------- /Examples/Data/Hyperlinks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Hyperlinks.docx -------------------------------------------------------------------------------- /Examples/Data/Id prefix.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Id prefix.docx -------------------------------------------------------------------------------- /Examples/Data/Iframe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Iframe.htm -------------------------------------------------------------------------------- /Examples/Data/Iframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Iframes.html -------------------------------------------------------------------------------- /Examples/Data/Image bullet points.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Image bullet points.docx -------------------------------------------------------------------------------- /Examples/Data/Images.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images.docx -------------------------------------------------------------------------------- /Examples/Data/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images.html -------------------------------------------------------------------------------- /Examples/Data/Images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images.pdf -------------------------------------------------------------------------------- /Examples/Data/Images/Barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Barcode.png -------------------------------------------------------------------------------- /Examples/Data/Images/Enhanced Windows MetaFile.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Enhanced Windows MetaFile.emf -------------------------------------------------------------------------------- /Examples/Data/Images/Graphics Interchange Format.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Graphics Interchange Format.gif -------------------------------------------------------------------------------- /Examples/Data/Images/Logo icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Logo icon.ico -------------------------------------------------------------------------------- /Examples/Data/Images/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Logo.jpg -------------------------------------------------------------------------------- /Examples/Data/Images/Microsoft Visio drawing.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Microsoft Visio drawing.vsd -------------------------------------------------------------------------------- /Examples/Data/Images/RightF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/RightF.jpg -------------------------------------------------------------------------------- /Examples/Data/Images/Scalable Vector Graphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Scalable Vector Graphics.svg -------------------------------------------------------------------------------- /Examples/Data/Images/Tagged Image File Format.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Tagged Image File Format.tiff -------------------------------------------------------------------------------- /Examples/Data/Images/Transparent background logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Transparent background logo.png -------------------------------------------------------------------------------- /Examples/Data/Images/WebP image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/WebP image.webp -------------------------------------------------------------------------------- /Examples/Data/Images/Windows MetaFile.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/Windows MetaFile.wmf -------------------------------------------------------------------------------- /Examples/Data/Images/WrongF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Images/WrongF.jpg -------------------------------------------------------------------------------- /Examples/Data/Ink object.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Ink object.docx -------------------------------------------------------------------------------- /Examples/Data/JavaScript in HREF.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/JavaScript in HREF.docx -------------------------------------------------------------------------------- /Examples/Data/Korean backslash symbol.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Korean backslash symbol.docx -------------------------------------------------------------------------------- /Examples/Data/Layout entities.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Layout entities.docx -------------------------------------------------------------------------------- /Examples/Data/Legacy control character.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Legacy control character.doc -------------------------------------------------------------------------------- /Examples/Data/Legacy drop-down.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Legacy drop-down.docx -------------------------------------------------------------------------------- /Examples/Data/Legacy fields.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Legacy fields.doc -------------------------------------------------------------------------------- /Examples/Data/Linked fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Linked fields.docx -------------------------------------------------------------------------------- /Examples/Data/Linked image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Linked image.docx -------------------------------------------------------------------------------- /Examples/Data/List destination.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List destination.docx -------------------------------------------------------------------------------- /Examples/Data/List item.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List item.docx -------------------------------------------------------------------------------- /Examples/Data/List of people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List of people.csv -------------------------------------------------------------------------------- /Examples/Data/List of people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List of people.json -------------------------------------------------------------------------------- /Examples/Data/List of people.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List of people.xml -------------------------------------------------------------------------------- /Examples/Data/List source.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List source.docx -------------------------------------------------------------------------------- /Examples/Data/List with leading zero.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List with leading zero.docx -------------------------------------------------------------------------------- /Examples/Data/List with the same definition identifier - destination.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List with the same definition identifier - destination.docx -------------------------------------------------------------------------------- /Examples/Data/List with the same definition identifier - source.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/List with the same definition identifier - source.docx -------------------------------------------------------------------------------- /Examples/Data/Macro.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Macro.docm -------------------------------------------------------------------------------- /Examples/Data/Mail merge data - Customers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge data - Customers.xml -------------------------------------------------------------------------------- /Examples/Data/Mail merge data - Orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge data - Orders.xml -------------------------------------------------------------------------------- /Examples/Data/Mail merge data - Purchase order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge data - Purchase order.xml -------------------------------------------------------------------------------- /Examples/Data/Mail merge data - Vendors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge data - Vendors.xml -------------------------------------------------------------------------------- /Examples/Data/Mail merge destination - Northwind employees.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destination - Northwind employees.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destination - Northwind suppliers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destination - Northwind suppliers.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destination - Suppliers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destination - Suppliers.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Complex template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Complex template.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Fax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Fax.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Invoice.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Invoice.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - LINQ.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - LINQ.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Mustache syntax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Mustache syntax.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Orders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Orders.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Registration complete.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Registration complete.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge destinations - Vendor.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge destinations - Vendor.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge mustache tags.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge mustache tags.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge regions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge regions.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge tables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge tables.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge template.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge with regions data set.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge with regions data set.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge with regions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge with regions.docx -------------------------------------------------------------------------------- /Examples/Data/Mail merge.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Mail merge.doc -------------------------------------------------------------------------------- /Examples/Data/Master document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Master document.docx -------------------------------------------------------------------------------- /Examples/Data/Math shapes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Math shapes.docx -------------------------------------------------------------------------------- /Examples/Data/Merged table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Merged table.docx -------------------------------------------------------------------------------- /Examples/Data/Microsoft equation object.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Microsoft equation object.docx -------------------------------------------------------------------------------- /Examples/Data/Missing font.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Missing font.docx -------------------------------------------------------------------------------- /Examples/Data/Missing font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Missing font.html -------------------------------------------------------------------------------- /Examples/Data/Missing image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Missing image.html -------------------------------------------------------------------------------- /Examples/Data/Multi-section structured document tags.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Multi-section structured document tags.docx -------------------------------------------------------------------------------- /Examples/Data/MyFonts/AllegroOpen.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/AllegroOpen.otf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Amethysta/Amethysta-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Amethysta/Amethysta-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Arvo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Arvo-Bold.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Arvo-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Arvo-BoldItalic.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Arvo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Arvo-Italic.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Arvo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Arvo-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/static/Junction-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/static/Junction-Bold.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/static/Junction-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/static/Junction-Light.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/static/Junction-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/static/Junction-Medium.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/static/Junction-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/static/Junction-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/static/Junction-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/static/Junction-SemiBold.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Junction/variable/JunctionVariableGX.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Junction/variable/JunctionVariableGX.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Kreon-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Kreon-Bold.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Kreon-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Kreon-Light.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Kreon-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Kreon-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/NoticiaText-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/NoticiaText-Bold.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/NoticiaText-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/NoticiaText-BoldItalic.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/NoticiaText-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/NoticiaText-Italic.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/NoticiaText-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/NoticiaText-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Slabo13px-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Slabo13px-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Slabo27px-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Slabo27px-Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/Squarish Sans CT Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/Squarish Sans CT Regular.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/dinot.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/dinot.otf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/dinot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/dinot.ttf -------------------------------------------------------------------------------- /Examples/Data/MyFonts/mplus-2m-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/MyFonts/mplus-2m-regular.ttf -------------------------------------------------------------------------------- /Examples/Data/Nested elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Nested elements.json -------------------------------------------------------------------------------- /Examples/Data/Nested elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Nested elements.xml -------------------------------------------------------------------------------- /Examples/Data/Nested fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Nested fields.docx -------------------------------------------------------------------------------- /Examples/Data/Nested tables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Nested tables.docx -------------------------------------------------------------------------------- /Examples/Data/No default editing language.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/No default editing language.docx -------------------------------------------------------------------------------- /Examples/Data/Non compatible table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Non compatible table.docx -------------------------------------------------------------------------------- /Examples/Data/Northwind traders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Northwind traders.docx -------------------------------------------------------------------------------- /Examples/Data/Number detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Number detection.txt -------------------------------------------------------------------------------- /Examples/Data/OLE ActiveX controls.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/OLE ActiveX controls.docm -------------------------------------------------------------------------------- /Examples/Data/OLE objects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/OLE objects.docx -------------------------------------------------------------------------------- /Examples/Data/OLE shape.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/OLE shape.rtf -------------------------------------------------------------------------------- /Examples/Data/OLE spreadsheet.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/OLE spreadsheet.docm -------------------------------------------------------------------------------- /Examples/Data/Odso data.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Odso data.docx -------------------------------------------------------------------------------- /Examples/Data/Office math.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Office math.docx -------------------------------------------------------------------------------- /Examples/Data/OpenType text shaping.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/OpenType text shaping.docx -------------------------------------------------------------------------------- /Examples/Data/PDF artifacts.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/PDF artifacts.docx -------------------------------------------------------------------------------- /Examples/Data/Page fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Page fields.docx -------------------------------------------------------------------------------- /Examples/Data/Paragraph frame.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Paragraph frame.docx -------------------------------------------------------------------------------- /Examples/Data/Paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Paragraphs.docx -------------------------------------------------------------------------------- /Examples/Data/Pdf Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Pdf Document.pdf -------------------------------------------------------------------------------- /Examples/Data/Phonetic guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Phonetic guide.docx -------------------------------------------------------------------------------- /Examples/Data/Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Presentation.pptx -------------------------------------------------------------------------------- /Examples/Data/Properties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Properties.docx -------------------------------------------------------------------------------- /Examples/Data/Protected pdf document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Protected pdf document.pdf -------------------------------------------------------------------------------- /Examples/Data/Quotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Quotes.md -------------------------------------------------------------------------------- /Examples/Data/Radio buttons.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Radio buttons.docx -------------------------------------------------------------------------------- /Examples/Data/Rendering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Rendering.docx -------------------------------------------------------------------------------- /Examples/Data/Replace regex.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Replace regex.docx -------------------------------------------------------------------------------- /Examples/Data/Replace text with fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Replace text with fields.docx -------------------------------------------------------------------------------- /Examples/Data/Report building.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Report building.docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Background color (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Background color (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Bubble chart (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Bubble chart (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Bulleted list (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Bulleted list (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Chart (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Chart (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Chart series (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Chart series (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Chart series color (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Chart series color (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Data table (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Data table (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Extension methods (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Extension methods (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Fields (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Fields (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Header variable (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Header variable (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Html (Java).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Html (Java).html -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - If greedy (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - If greedy (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - If-else (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - If-else (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Index of (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Index of (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - List numbering (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - List numbering (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Nested data table (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Nested data table (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Numbered list (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Numbered list (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Operators (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Operators (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Pie chart (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Pie chart (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Point color (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Point color (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Scatter chart (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Scatter chart (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Table row (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Table row (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Table row greedy (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Table row greedy (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Text color (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Text color (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Total (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Total (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Reporting engine template - Word 2016 Charts (Java).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Reporting engine template - Word 2016 Charts (Java).docx -------------------------------------------------------------------------------- /Examples/Data/Revision footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Revision footnotes.docx -------------------------------------------------------------------------------- /Examples/Data/Revision runs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Revision runs.docx -------------------------------------------------------------------------------- /Examples/Data/Revision shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Revision shape.docx -------------------------------------------------------------------------------- /Examples/Data/Revisions at list levels.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Revisions at list levels.docx -------------------------------------------------------------------------------- /Examples/Data/Revisions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Revisions.docx -------------------------------------------------------------------------------- /Examples/Data/Rotated cell text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Rotated cell text.docx -------------------------------------------------------------------------------- /Examples/Data/Rounded rectangle shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Rounded rectangle shape.docx -------------------------------------------------------------------------------- /Examples/Data/Section breaks with numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Section breaks with numbering.docx -------------------------------------------------------------------------------- /Examples/Data/Shadow color.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Shadow color.docx -------------------------------------------------------------------------------- /Examples/Data/Shape high dpi.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Shape high dpi.docx -------------------------------------------------------------------------------- /Examples/Data/Shape shadow effect.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Shape shadow effect.docx -------------------------------------------------------------------------------- /Examples/Data/Shape stroke pattern border.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Shape stroke pattern border.docx -------------------------------------------------------------------------------- /Examples/Data/Shape with linked chart.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Shape with linked chart.docx -------------------------------------------------------------------------------- /Examples/Data/Signature line.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Signature line.docx -------------------------------------------------------------------------------- /Examples/Data/Smart tags.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Smart tags.doc -------------------------------------------------------------------------------- /Examples/Data/SmartArt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/SmartArt.docx -------------------------------------------------------------------------------- /Examples/Data/Special symbol.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Special symbol.docx -------------------------------------------------------------------------------- /Examples/Data/Spreadsheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Spreadsheet.xlsx -------------------------------------------------------------------------------- /Examples/Data/Stroke gradient outline.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Stroke gradient outline.docx -------------------------------------------------------------------------------- /Examples/Data/Structured document tag with HTML content.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Structured document tag with HTML content.docx -------------------------------------------------------------------------------- /Examples/Data/Structured document tags by id.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Structured document tags by id.docx -------------------------------------------------------------------------------- /Examples/Data/Structured document tags with building blocks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Structured document tags with building blocks.docx -------------------------------------------------------------------------------- /Examples/Data/Structured document tags.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Structured document tags.docx -------------------------------------------------------------------------------- /Examples/Data/Style with alias.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Style with alias.docx -------------------------------------------------------------------------------- /Examples/Data/Styles destination.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Styles destination.docx -------------------------------------------------------------------------------- /Examples/Data/Styles source.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Styles source.docx -------------------------------------------------------------------------------- /Examples/Data/Styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Styles.docx -------------------------------------------------------------------------------- /Examples/Data/Subdocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Subdocument.docx -------------------------------------------------------------------------------- /Examples/Data/Table column bookmark.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table column bookmark.doc -------------------------------------------------------------------------------- /Examples/Data/Table column bookmarks.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table column bookmarks.doc -------------------------------------------------------------------------------- /Examples/Data/Table column bookmarks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table column bookmarks.docx -------------------------------------------------------------------------------- /Examples/Data/Table of content template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table of content template.docx -------------------------------------------------------------------------------- /Examples/Data/Table of contents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table of contents.docx -------------------------------------------------------------------------------- /Examples/Data/Table spanning two pages.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table spanning two pages.docx -------------------------------------------------------------------------------- /Examples/Data/Table with fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table with fields.docx -------------------------------------------------------------------------------- /Examples/Data/Table with merged cells.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table with merged cells.docx -------------------------------------------------------------------------------- /Examples/Data/Table wrapped by text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Table wrapped by text.docx -------------------------------------------------------------------------------- /Examples/Data/Tables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Tables.docx -------------------------------------------------------------------------------- /Examples/Data/TestShapesUnsupportedBevel.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/TestShapesUnsupportedBevel.docx -------------------------------------------------------------------------------- /Examples/Data/TestWarningsForBevels.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/TestWarningsForBevels.docx -------------------------------------------------------------------------------- /Examples/Data/TestWarningsForLighting.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/TestWarningsForLighting.docx -------------------------------------------------------------------------------- /Examples/Data/TestWarningsForMaterial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/TestWarningsForMaterial.docx -------------------------------------------------------------------------------- /Examples/Data/Text positioning operators.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Text positioning operators.docx -------------------------------------------------------------------------------- /Examples/Data/TextBoxes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/TextBoxes.docx -------------------------------------------------------------------------------- /Examples/Data/Textbox control.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Textbox control.docm -------------------------------------------------------------------------------- /Examples/Data/Textboxes in drawing canvas.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Textboxes in drawing canvas.docx -------------------------------------------------------------------------------- /Examples/Data/Theme colors.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Theme colors.docx -------------------------------------------------------------------------------- /Examples/Data/Two color gradient.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Two color gradient.docx -------------------------------------------------------------------------------- /Examples/Data/UTF-8 characters.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/UTF-8 characters.rtf -------------------------------------------------------------------------------- /Examples/Data/Unoptimized document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Unoptimized document.docx -------------------------------------------------------------------------------- /Examples/Data/Unused styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Unused styles.docx -------------------------------------------------------------------------------- /Examples/Data/VBA project.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/VBA project.docm -------------------------------------------------------------------------------- /Examples/Data/VML conditional.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/VML conditional.htm -------------------------------------------------------------------------------- /Examples/Data/Various fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Various fields.docx -------------------------------------------------------------------------------- /Examples/Data/Various shapes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Various shapes.docx -------------------------------------------------------------------------------- /Examples/Data/Vba protected.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Vba protected.docm -------------------------------------------------------------------------------- /Examples/Data/Versions.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Versions.doc -------------------------------------------------------------------------------- /Examples/Data/WMF with image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/WMF with image.docx -------------------------------------------------------------------------------- /Examples/Data/WMF with text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/WMF with text.docx -------------------------------------------------------------------------------- /Examples/Data/Web extension.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Web extension.docx -------------------------------------------------------------------------------- /Examples/Data/Word document with missing file extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Word document with missing file extension -------------------------------------------------------------------------------- /Examples/Data/Xlsx DateTime.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Xlsx DateTime.docx -------------------------------------------------------------------------------- /Examples/Data/Xlsx Document.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Xlsx Document.xlsx -------------------------------------------------------------------------------- /Examples/Data/Zip file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/Zip file.zip -------------------------------------------------------------------------------- /Examples/Data/hyph_de_CH.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/hyph_de_CH.dic -------------------------------------------------------------------------------- /Examples/Data/hyph_en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/hyph_en_US.dic -------------------------------------------------------------------------------- /Examples/Data/morzal.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/Data/morzal.pfx -------------------------------------------------------------------------------- /Examples/DocsExamples/Java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/Java/pom.xml -------------------------------------------------------------------------------- /Examples/DocsExamples/Java/src/main/java/TestData/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/Java/src/main/java/TestData/Common.java -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/CsPorterConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/CsPorterConfig.xml -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/CsPorterReport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/CsPorterReport.xml -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/DocsExamplesBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/DocsExamplesBase.java -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/Getting_started/ApplyLicense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/Getting_started/ApplyLicense.java -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Charts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Charts.java -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Lists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Lists.java -------------------------------------------------------------------------------- /Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Tables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Examples/DocsExamples/JavaPorting/LINQ_Reporting_Engine/Tables.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose-Words-Java-for-NetBeans(Maven)/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose-Words-Java-for-NetBeans(Maven)/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose-Words-Java-for-NetBeans(Maven)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose-Words-Java-for-NetBeans(Maven)/README.md -------------------------------------------------------------------------------- /Plugins/Aspose-Words-Java-for-NetBeans(Maven)/Release Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose-Words-Java-for-NetBeans(Maven)/Release Notes.html -------------------------------------------------------------------------------- /Plugins/Aspose.Words Java for dotCMS/AsposeDotCMSExportToWord.servlet/.gradle/1.8/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Sun Apr 03 15:50:17 PKT 2016 2 | -------------------------------------------------------------------------------- /Plugins/Aspose.Words Java for dotCMS/AsposeDotCMSExportToWord.servlet/.gradle/1.8/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Docx4j/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Docx4j/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Docx4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Docx4j/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Docx4j/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Docx4j/pom.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Eclipse_Maven/AsposeWordsEclipseFeature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Eclipse_Maven/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Eclipse_Maven/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Eclipse_Maven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Eclipse_Maven/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Eclipse_Maven/Release Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Eclipse_Maven/Release Notes.html -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/.name: -------------------------------------------------------------------------------- 1 | Aspose.Words Java for IntelliJ Maven -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/compiler.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/encodings.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/misc.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/modules.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/vcs.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/.idea/workspace.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/META-INF/plugin.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/src/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/src/Bundle.properties -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/src/resources/aspose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_IntelliJ(Maven)/src/resources/aspose.png -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/asposewords/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/asposewords/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/asposewords/quickstart/DocToPdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/asposewords/quickstart/DocToPdf.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/loading_saving/LoadTxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/loading_saving/LoadTxt.txt -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/loading_saving/document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/loading_saving/document.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/quickstart/Document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/quickstart/Document.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/quickstart/MailMerge.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/quickstart/MailMerge.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/quickstart/ReplaceSimple.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/quickstart/ReplaceSimple.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/data/quickstart/TestFile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/data/quickstart/TestFile.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Jython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Jython/setup.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_PHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_PHP/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_PHP/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_PHP/index.php -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/default.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/loadingandsaving/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/loadingandsaving/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/loadingandsaving/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/loadingandsaving/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/mailmergeandreporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/mailmergeandreporting/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/mailmergeandreporting/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/mailmergeandreporting/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/quickstart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/quickstart/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Python/quickstart/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Python/quickstart/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/Gempackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/Gempackage -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/asposewordsjavaforruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/asposewordsjavaforruby.gemspec -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/config/aspose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/config/aspose.yml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/Field.RemoveField.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/Field.RemoveField.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/LoadTxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/LoadTxt.txt -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/Template.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/Template.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/Test.Styles.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/Test.Styles.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/TestAutofittables.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/TestAutofittables.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/TestComments.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/TestComments.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/TestCompressImages.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/TestCompressImages.docx -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/TestFile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/TestFile.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/TestWatermark.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/TestWatermark.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/bookmarks/Template.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/bookmarks/Template.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/bookmarks/TestDefect1352.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/bookmarks/TestDefect1352.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/document/TestFile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/document/TestFile.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/document/TestRemoveBreaks.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/document/TestRemoveBreaks.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/mailmerge/Template.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/mailmerge/Template.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/mailmerge/TestFile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/mailmerge/TestFile.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/Document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/Document.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/HelloWorld.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/HelloWorld.docx -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/MailMerge.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/MailMerge.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/ReplaceSimple.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/ReplaceSimple.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/TestFile.Source.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/data/quickstart/TestFile.Source.doc -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/jars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/jars/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby/nodes.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby/styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby/styles.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/lib/asposewordsjavaforruby/version.rb: -------------------------------------------------------------------------------- 1 | module Asposewordsjavaforruby 2 | VERSION = '0.0.4' 3 | end 4 | -------------------------------------------------------------------------------- /Plugins/Aspose_Words_Java_for_Ruby/licensefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_Java_for_Ruby/licensefile/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Apache_POI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Apache_POI/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Apache_POI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Apache_POI/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Apache_POI/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Apache_POI/pom.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/.classpath -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/.project -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/pom.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/java/com/books/BookForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/java/com/books/BookForm.java -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/java/com/books/Books.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/java/com/books/Books.java -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/java/com/books/ShowBooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/java/com/books/ShowBooks.java -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/addbook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/addbook.jsp -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/books.jsp -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/editbook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/editbook.jsp -------------------------------------------------------------------------------- /Plugins/Aspose_Words_for_Struts/src/main/webapp/jsp/books/index.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-words/Aspose.Words-for-Java/HEAD/README.md --------------------------------------------------------------------------------