├── .gitattributes ├── .gitignore ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE ├── NewDocxDocuments ├── Bookmark.docx ├── Bookmark.txt ├── BulletedText.docx ├── BulletedText.txt ├── Chart.docx ├── Chart.txt ├── Comment.docx ├── Comment.txt ├── ContentControls.docx ├── ContentControls.txt ├── ContentControlsNested.docx ├── ContentControlsNested.txt ├── CoverPage.docx ├── CoverPage.txt ├── EmbeddedWorkbook.docx ├── EmbeddedWorkbook.txt ├── Empty.docx ├── Empty.txt ├── EndNote.docx ├── EndNote.txt ├── Equation.docx ├── Equation.txt ├── Fields.docx ├── Fields.txt ├── Fonts.docx ├── Fonts.txt ├── FootNote.docx ├── FootNote.txt ├── FormattedText.docx ├── FormattedText.txt ├── GenerateNewDocxCmdlet.ps1 ├── Headings.docx ├── Headings.txt ├── HierarchicalNumberedList.docx ├── HierarchicalNumberedList.txt ├── HorizontalWhiteSpace.docx ├── HorizontalWhiteSpace.txt ├── Hyperlink.docx ├── Hyperlink.txt ├── Image.docx ├── Image.txt ├── Justified.docx ├── Justified.txt ├── NumberedList.docx ├── NumberedList.txt ├── NumberedListRomanNumerals.docx ├── NumberedListRomanNumerals.txt ├── ParagraphBorder.docx ├── ParagraphBorder.txt ├── Plain.docx ├── Plain.txt ├── RevisionTracking.docx ├── RevisionTracking.txt ├── RightJustified.docx ├── RightJustified.txt ├── Section.docx ├── Section.txt ├── SectionWithWatermark.docx ├── SectionWithWatermark.txt ├── Shading.docx ├── Shading.txt ├── Shape.docx ├── Shape.txt ├── SmartArt.docx ├── SmartArt.txt ├── Symbols.docx ├── Symbols.txt ├── Table.docx ├── Table.txt ├── TableOfContents.docx ├── TableOfContents.txt ├── TextBox.docx ├── TextBox.txt ├── TextEffects.docx ├── TextEffects.txt ├── Theme.docx ├── Theme.txt ├── VerticalWhiteSpace.docx └── VerticalWhiteSpace.txt ├── NewPptxPresentations ├── AdjacencyTheme.pptx ├── AdjacencyTheme.txt ├── AnglesTheme.pptx ├── AnglesTheme.txt ├── ApexTheme.pptx ├── ApexTheme.txt ├── BlankLayout.pptx ├── BlankLayout.txt ├── ComparisonLayout.pptx ├── ComparisonLayout.txt ├── ContentWithCaptionLayout.pptx ├── ContentWithCaptionLayout.txt ├── Empty.pptx ├── Empty.txt ├── FiveSlides.pptx ├── FiveSlides.txt ├── GenerateNewPptxCmdlet.ps1 ├── PictureWithCaptionLayout.pptx ├── PictureWithCaptionLayout.txt ├── SectionHeaderLayout.pptx ├── SectionHeaderLayout.txt ├── SlideTransitions.pptx ├── SlideTransitions.txt ├── TenSlides.pptx ├── TenSlides.txt ├── TitleAndContentLayout.pptx ├── TitleAndContentLayout.txt ├── TitleLayout.pptx ├── TitleLayout.txt ├── TitleOnlyLayout.pptx ├── TitleOnlyLayout.txt ├── TwoContentLayout.pptx ├── TwoContentLayout.txt ├── WaveFormTheme.pptx └── WaveFormTheme.txt ├── OpenXmlPowerTools.Tests.OA ├── HtmlToWmlConverterTests2.cs ├── ListItemRetrieverTests.cs ├── OpenXmlPowerTools.Tests.OA.csproj └── WordAutomationUtilities.cs ├── OpenXmlPowerTools.Tests ├── ChartUpdaterTests.cs ├── DocumentAssemblerTests.cs ├── DocumentBuilderTests.cs ├── FormattingAssemblerTests.cs ├── HtmlConverterTests.cs ├── HtmlToWmlConverterTests.cs ├── HtmlToWmlReadAsXElement.cs ├── MarkupSimplifierTests.cs ├── MetricsGetterTests.cs ├── OpenXmlPowerTools.Tests.csproj ├── OpenXmlRegexTests.cs ├── PowerToolsBlockExtensionsTests.cs ├── PowerToolsBlockTests.cs ├── PresentationBuilderTests.cs ├── PtUtilTests.cs ├── RevisionAccepterTests.cs ├── RevisionProcessorTests.cs ├── SmlCellFormatterTests.cs ├── SmlToHtmlConverterTests.cs ├── SpreadsheetWriterTests.cs ├── StronglyTypedBlockTests.cs ├── TestsBase.cs ├── UnicodeMapperTests.cs ├── WmlComparerTests.cs ├── WmlComparerTests2.cs └── WmlContentAtomListTests.cs ├── OpenXmlPowerTools.sln ├── OpenXmlPowerTools.sln.DotSettings ├── OpenXmlPowerTools ├── ChartUpdater.cs ├── ColorParser.cs ├── DocumentAssembler.cs ├── DocumentBuilder.cs ├── ExcelFormula.cs ├── FieldRetriever.cs ├── FormattingAssembler.cs ├── GetListItemText_Default.cs ├── GetListItemText_fr_FR.cs ├── GetListItemText_ru_RU.cs ├── GetListItemText_sv_SE.cs ├── GetListItemText_tr_TR.cs ├── GetListItemText_zh_CN.cs ├── HtmlToWmlConverter.cs ├── HtmlToWmlConverterCore.cs ├── HtmlToWmlCssApplier.cs ├── HtmlToWmlCssParser.cs ├── ListItemRetriever.cs ├── MarkupSimplifier.cs ├── MetricsGetter.cs ├── OpenXmlPowerTools.csproj ├── OpenXmlPowerTools.csproj.DotSettings ├── OpenXmlRegex.cs ├── OxPtHelpers.cs ├── PegBase.cs ├── PowerToolsBlock.cs ├── PowerToolsBlockExtensions.cs ├── PresentationBuilder.cs ├── Properties │ └── AssemblyInfo.cs ├── PtOpenXmlDocument.cs ├── PtOpenXmlUtil.cs ├── PtUtil.cs ├── ReferenceAdder.cs ├── RevisionAccepter.cs ├── RevisionProcessor.cs ├── SSFormula.cs ├── ScalarTypes.cs ├── SmlCellFormatter.cs ├── SmlDataRetriever.cs ├── SmlToHtmlConverter.cs ├── SpreadsheetDocumentManager.cs ├── SpreadsheetWriter.cs ├── StronglyTypedBlock.cs ├── TestUtil.cs ├── TextReplacer.cs ├── UnicodeMapper.cs ├── WmlComparer.cs ├── WmlDocument.cs ├── WmlToHtmlConverter.cs ├── WmlToXml.cs ├── WorksheetAccessor.cs └── XlsxTables.cs ├── OpenXmlPowerToolsExamples ├── ChartUpdater01 │ ├── Chart-Cached-Data-01.docx │ ├── Chart-Cached-Data-02.docx │ ├── Chart-Cached-Data-03.docx │ ├── Chart-Cached-Data-04.docx │ ├── Chart-Cached-Data-05.docx │ ├── Chart-Cached-Data-06.docx │ ├── Chart-Cached-Data-07.docx │ ├── Chart-Cached-Data-08.docx │ ├── Chart-Cached-Data-41.pptx │ ├── Chart-Embedded-Xlsx-01.docx │ ├── Chart-Embedded-Xlsx-02.docx │ ├── Chart-Embedded-Xlsx-03.docx │ ├── Chart-Embedded-Xlsx-04.docx │ ├── Chart-Embedded-Xlsx-05.docx │ ├── Chart-Embedded-Xlsx-06.docx │ ├── Chart-Embedded-Xlsx-07.docx │ ├── Chart-Embedded-Xlsx-08.docx │ ├── Chart-Embedded-Xlsx-10.docx │ ├── Chart-Embedded-Xlsx-41.pptx │ ├── ChartUpdater01.cs │ ├── ChartUpdater01.csproj │ └── Note-ExampleOutput-files-are-in-bin-debug.txt ├── DocumentAssembler │ ├── Data.xml │ ├── DocumentAssembler.cs │ ├── DocumentAssembler.csproj │ └── TemplateDocument.docx ├── DocumentAssembler01 │ ├── Data.xml │ ├── DocumentAssembler01.cs │ ├── DocumentAssembler01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ └── TemplateDocument.docx ├── DocumentAssembler02 │ ├── AssembledDoc.docx │ ├── Data.xml │ ├── DocumentAssembler02.cs │ ├── DocumentAssembler02.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ └── TemplateDocument.docx ├── DocumentAssembler03 │ ├── DocumentAssembler03.cs │ ├── DocumentAssembler03.csproj │ └── TemplateDocument.docx ├── DocumentBuilder01 │ ├── DocumentBuilder01.cs │ ├── DocumentBuilder01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Source1.docx │ ├── Source2.docx │ └── Source3.docx ├── DocumentBuilder02 │ ├── Abstract.docx │ ├── AuthorBiography.docx │ ├── DocumentBuilder02.cs │ ├── DocumentBuilder02.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Notes.docx │ ├── Spec.docx │ └── WhitePaper.docx ├── DocumentBuilder03 │ ├── DocumentBuilder03.cs │ ├── DocumentBuilder03.csproj │ ├── FrontMatter.docx │ ├── Insert-01.docx │ ├── Insert-02.docx │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ └── Template.docx ├── DocumentBuilder04 │ ├── DocumentBuilder04.cs │ ├── DocumentBuilder04.csproj │ ├── Earth.docx │ ├── Jupiter.docx │ ├── Mars.docx │ ├── Mercury.docx │ ├── Neptune.docx │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Pluto.docx │ ├── Saturn.docx │ ├── SolarOverview.docx │ ├── Sun.docx │ ├── Uranus.docx │ ├── Venus.docx │ └── solar-system.docx ├── FieldRetriever01 │ ├── DocWithFooter1.docx │ ├── DocWithFooter2.docx │ ├── FieldRetriever01.cs │ ├── FieldRetriever01.csproj │ └── Note-ExampleOutput-files-are-in-bin-debug.txt ├── FormattingAssembler01 │ ├── FormattingAssembler01.cs │ ├── FormattingAssembler01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Test01.docx │ ├── Test02.docx │ └── Test03.docx ├── Formulas01 │ ├── Formulas.xlsx │ ├── Formulas01.cs │ ├── Formulas01.csproj │ └── Note-ExampleOutput-files-are-in-bin-debug.txt ├── HtmlConverter01 │ ├── 5DayTourPlanTemplate.docx │ ├── Contract.docx │ ├── Hebrew-01.docx │ ├── Hebrew-02.docx │ ├── HtmlConverter01.cs │ ├── HtmlConverter01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── ResumeTemplate.docx │ ├── TaskPlanTemplate.docx │ ├── Test-01.docx │ ├── Test-02.docx │ ├── Test-03.docx │ ├── Test-04.docx │ ├── Test-05.docx │ ├── Test-06.docx │ ├── Test-07.docx │ └── Test-08.docx ├── HtmlToWmlConverter01 │ ├── 5DayTourPlanTemplate.html │ ├── 5DayTourPlanTemplate_files │ │ ├── image1.jpeg │ │ ├── image2.jpeg │ │ ├── image3.jpeg │ │ ├── image4.jpeg │ │ └── image5.jpeg │ ├── Contract.html │ ├── Hebrew-01.html │ ├── Hebrew-01_files │ │ ├── image1.png │ │ └── image2.jpeg │ ├── Hebrew-02.html │ ├── Hebrew-02_files │ │ └── image1.gif │ ├── HtmlToWmlConverter01.cs │ ├── HtmlToWmlConverter01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── ResumeTemplate.html │ ├── TaskPlanTemplate.html │ ├── Test-01.html │ ├── Test-02.html │ ├── Test-03.html │ ├── Test-03_files │ │ └── image1.jpeg │ ├── Test-04.html │ ├── Test-05.html │ ├── Test-06.html │ ├── Test-07.html │ └── Test-08.html ├── HtmlToWmlConverter02 │ ├── HtmlToWmlConverter02.cs │ ├── HtmlToWmlConverter02.csproj │ └── TemplateDocument.docx ├── ListItemRetriever01 │ ├── ListItemRetriever01.cs │ ├── ListItemRetriever01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ └── NumberedListTest.docx ├── MarkupSimplifierApp │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MarkupSimplifierApp.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Program.cs │ └── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── Settings.Designer.cs ├── MetricsGetter01 │ ├── ContentControls.docx │ ├── MetricsGetter01.cs │ ├── MetricsGetter01.csproj │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Styles.docx │ ├── Tables.xlsx │ └── TrackedRevisions.docx ├── OpenXmlRegex01 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── OpenXmlRegex01.cs │ ├── OpenXmlRegex01.csproj │ ├── TestDocument.docx │ └── TestPresentation.pptx ├── OpenXmlRegex02 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── OpenXmlRegex02.cs │ ├── OpenXmlRegex02.csproj │ └── TestDocument.docx ├── PivotTables01 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── PivotData.txt │ ├── PivotTables.cs │ ├── PivotTables01.csproj │ ├── QuarterlySales.xlsx │ └── QuarterlyUnitSales.xlsx ├── PresentationBuilder01 │ ├── Companies.pptx │ ├── Contoso One.pptx │ ├── Contoso Three.pptx │ ├── Contoso Two.pptx │ ├── Contoso.pptx │ ├── Customer Content.pptx │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Presentation One.pptx │ ├── Presentation Three.pptx │ ├── Presentation Two.pptx │ ├── PresentationBuilder01.cs │ └── PresentationBuilder01.csproj ├── PresentationBuilder02 │ ├── HiddenPresentation.pptx │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Presentation1.pptx │ ├── PresentationBuilder02.cs │ └── PresentationBuilder02.csproj ├── ReferenceAdder01 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── ReferenceAdder01.cs │ ├── ReferenceAdder01.csproj │ ├── Test01.docx │ ├── Test02.docx │ ├── Test03.docx │ ├── Test04.docx │ ├── Test05.docx │ ├── Test06.docx │ └── Test07.docx ├── RevisionAccepter01 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── RevisionAccepter01.cs │ ├── RevisionAccepter01.csproj │ └── Source1.docx ├── SmlDataRetriever01 │ ├── SampleSpreadsheet.xlsx │ ├── SmlDataRetriever01.cs │ └── SmlDataRetriever01.csproj ├── SpreadsheetWriter01 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── SpreadsheetWriter01.cs │ └── SpreadsheetWriter01.csproj ├── SpreadsheetWriter02 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── SpreadsheetWriter02.cs │ └── SpreadsheetWriter02.csproj ├── TextReplacer01 │ ├── Test01.pptx │ ├── Test02.pptx │ ├── Test03.pptx │ ├── TextReplacer01.cs │ └── TextReplacer01.csproj ├── TextReplacer02 │ ├── Note-ExampleOutput-files-are-in-bin-debug.txt │ ├── Test01.docx │ ├── Test02.docx │ ├── Test03.docx │ ├── Test04.docx │ ├── Test05.docx │ ├── Test06.docx │ ├── Test07.docx │ ├── Test08.docx │ ├── Test09.docx │ ├── TextReplacer02.cs │ └── TextReplacer02.csproj ├── WmlComparer01 │ ├── Source1.docx │ ├── Source2.docx │ ├── WmlComparer01.cs │ └── WmlComparer01.csproj ├── WmlComparer02 │ ├── Original.docx │ ├── RevisedByBob.docx │ ├── RevisedByMary.docx │ ├── WmlComparer02.cs │ └── WmlComparer02.csproj ├── WmlToHtmlConverter01 │ ├── 5DayTourPlanTemplate.docx │ ├── Contract.docx │ ├── Hebrew-01.docx │ ├── Hebrew-02.docx │ ├── ResumeTemplate.docx │ ├── TaskPlanTemplate.docx │ ├── Test-01.docx │ ├── Test-02.docx │ ├── Test-03.docx │ ├── Test-04.docx │ ├── Test-05.docx │ ├── Test-06.docx │ ├── Test-07.docx │ ├── Test-08.docx │ ├── WmlToHtmlConverter01.cs │ └── WmlToHtmlConverter01.csproj ├── WmlToHtmlConverter02 │ ├── 5DayTourPlanTemplate.docx │ ├── Contract.docx │ ├── Hebrew-01.docx │ ├── Hebrew-02.docx │ ├── ResumeTemplate.docx │ ├── TaskPlanTemplate.docx │ ├── Test-01.docx │ ├── Test-02.docx │ ├── Test-03.docx │ ├── Test-04.docx │ ├── Test-05.docx │ ├── Test-06.docx │ ├── Test-07.docx │ ├── Test-08.docx │ ├── WmlToHtmlConverter02.cs │ └── WmlToHtmlConverter02.csproj └── WordAutomationUtilities │ ├── WordAutomationUtilities.cs │ └── WordAutomationUtilities.csproj ├── README.md ├── TestFiles ├── Blank-altChunk.docx ├── Blank-wml.docx ├── CA │ ├── CA001-Plain-COMPARE-CA001-Plain-Mod.docx │ ├── CA001-Plain-Mod.docx │ ├── CA001-Plain.docx │ ├── CA002-Bookmark.docx │ ├── CA003-Numbered-List.docx │ ├── CA004-TwoParas.docx │ ├── CA005-Table.docx │ ├── CA006-ContentControl.docx │ ├── CA007-DayLong.docx │ ├── CA008-Footnote-Reference.docx │ ├── CA009-altChunk.docx │ ├── CA010-Delete-Run.docx │ ├── CA011-Insert-Run.docx │ ├── CA012-fldSimple.docx │ ├── CA013-Lots-of-Stuff.docx │ └── CA014-Complex-Table.docx ├── CU001-Chart-Cached-Data-01.docx ├── CU002-Chart-Cached-Data-02.docx ├── CU003-Chart-Cached-Data-03.docx ├── CU004-Chart-Cached-Data-04.docx ├── CU005-Chart-Cached-Data-05.docx ├── CU006-Chart-Cached-Data-06.docx ├── CU007-Chart-Cached-Data-07.docx ├── CU008-Chart-Cached-Data-08.docx ├── CU009-Chart-Embedded-Xlsx-01.docx ├── CU010-Chart-Embedded-Xlsx-02.docx ├── CU011-Chart-Embedded-Xlsx-03.docx ├── CU012-Chart-Embedded-Xlsx-04.docx ├── CU013-Chart-Embedded-Xlsx-05.docx ├── CU014-Chart-Embedded-Xlsx-06.docx ├── CU015-Chart-Embedded-Xlsx-07.docx ├── CU016-Chart-Embedded-Xlsx-08.docx ├── CU017-Chart-Embedded-Xlsx-10.docx ├── CU018-Chart-Cached-Data-41.pptx ├── CU019-Chart-Embedded-Xlsx-41.pptx ├── CZ │ ├── CZ001-Plain-Mod.docx │ ├── CZ001-Plain.docx │ ├── CZ002-Multi-Paragraphs-Mod.docx │ ├── CZ002-Multi-Paragraphs.docx │ ├── CZ003-Multi-Paragraphs-Mod.docx │ ├── CZ003-Multi-Paragraphs.docx │ ├── CZ004-Multi-Paragraphs-in-Cell-Mod.docx │ └── CZ004-Multi-Paragraphs-in-Cell.docx ├── DA-CellDataInAttributes.xml ├── DA-ConditionalOnAttribute.xml ├── DA-Content-List.xml ├── DA-Data.xml ├── DA-DataNestedRepeat.xml ├── DA-DataNotHighValueCust.xml ├── DA-DataSmallCustomer.xml ├── DA-TooMuchDataForCell.xml ├── DA-TooMuchDataForConditional.xml ├── DA001-TemplateDocument.docx ├── DA002-TemplateDocument.docx ├── DA003-Select-XPathFindsNoData.docx ├── DA004-Data.xml ├── DA004-Select-XPathFindsNoDataOptional.docx ├── DA005-SelectRowData-NoData.docx ├── DA006-SelectTestValue-NoData.docx ├── DA007-SelectRepeatingData-NoData.docx ├── DA008-TableElementWithNoTable.docx ├── DA009-InvalidXPath.docx ├── DA010-InvalidXml.docx ├── DA011-SchemaError.docx ├── DA012-OtherMarkupTypes.docx ├── DA013-Runs.docx ├── DA014-TwoRuns-NoValuesSelected.docx ├── DA015-TwoRunsXmlExceptionInFirst.docx ├── DA016-TwoRunsSchemaErrorInSecond.docx ├── DA017-FiveRuns.docx ├── DA018-SmartQuotes.docx ├── DA019-RunIsEntireParagraph.docx ├── DA020-TwoRunsAndNoOtherContent.docx ├── DA021-NestedRepeat.docx ├── DA022-InvalidXPath.docx ├── DA023-RepeatWOEndRepeat.docx ├── DA024-TrackedRevisions.docx ├── DA025-TemplateDocument.docx ├── DA026-InvalidRootXmlElement.docx ├── DA027-XPathErrorInPara.docx ├── DA028-NoPrototypeRow.docx ├── DA029-NoDataForCell.docx ├── DA030-TooMuchDataForCell.docx ├── DA031-CellDataInAttributes.docx ├── DA032-TooMuchDataForConditional.docx ├── DA033-ConditionalOnAttribute.docx ├── DA034-HeaderFooter.docx ├── DA035-SchemaErrorInRepeat.docx ├── DA036-SchemaErrorInConditional.docx ├── DA100-TemplateDocument.docx ├── DA101-TemplateDocument.docx ├── DA102-TemplateDocument.docx ├── DA201-TemplateDocument.docx ├── DA202-TemplateDocument.docx ├── DA203-Select-XPathFindsNoData.docx ├── DA204-Select-XPathFindsNoDataOptional.docx ├── DA205-SelectRowData-NoData.docx ├── DA206-SelectTestValue-NoData.docx ├── DA207-SelectRepeatingData-NoData.docx ├── DA208-TableElementWithNoTable.docx ├── DA209-InvalidXPath.docx ├── DA210-InvalidXml.docx ├── DA211-SchemaError.docx ├── DA212-OtherMarkupTypes.docx ├── DA213-Runs.docx ├── DA214-TwoRuns-NoValuesSelected.docx ├── DA215-TwoRunsXmlExceptionInFirst.docx ├── DA216-TwoRunsSchemaErrorInSecond.docx ├── DA217-FiveRuns.docx ├── DA218-SmartQuotes.docx ├── DA219-RunIsEntireParagraph.docx ├── DA220-TwoRunsAndNoOtherContent.docx ├── DA221-NestedRepeat.docx ├── DA222-InvalidXPath.docx ├── DA223-RepeatWOEndRepeat.docx ├── DA224-TrackedRevisions.docx ├── DA225-TemplateDocument.docx ├── DA226-InvalidRootXmlElement.docx ├── DA227-XPathErrorInPara.docx ├── DA228-NoPrototypeRow.docx ├── DA229-NoDataForCell.docx ├── DA230-TooMuchDataForCell.docx ├── DA231-CellDataInAttributes.docx ├── DA232-TooMuchDataForConditional.docx ├── DA233-ConditionalOnAttribute.docx ├── DA234-HeaderFooter.docx ├── DA235-Crashes.docx ├── DA236-Page-Num-in-Footer.docx ├── DA237-SchemaErrorInRepeat.docx ├── DA238-SchemaErrorInConditional.docx ├── DA239-RunLevelCC-Repeat.docx ├── DA250-Address.xml ├── DA250-ConditionalWithRichXPath.docx ├── DA251-EnhancedTables.docx ├── DA252-Table-With-Sum.docx ├── DA253-Table-With-Sum-Run-Level-CC.docx ├── DA254-Table-With-XPath-Sum.docx ├── DA255-Table-With-XPath-Sum-Run-Level-CC.docx ├── DA256-NoInvalidDocOnErrorInRun.docx ├── DA257-OptionalRepeat.docx ├── DA258-ContentAcceptsCharsAsXPathResult.docx ├── DA259-MultiLineContents.docx ├── DA260-RunLevelRepeat.docx ├── DA261-RunLevelConditional.docx ├── DA262-ConditionalNotMatch.docx ├── DA263-ConditionalNotMatch.docx ├── DA264-InvalidRunLevelRepeat.docx ├── DA265-RunLevelRepeatWithWhiteSpaceBefore.docx ├── DA266-RunLevelRepeat-NoData.docx ├── DB │ ├── GlossaryDocuments │ │ ├── BaseDocument.docx │ │ ├── CellLevelContentControl-built.docx │ │ ├── CellLevelContentControl.docx │ │ ├── ContentControlDanishProofingLanguage-built.docx │ │ ├── ContentControlDanishProofingLanguage.docx │ │ ├── ContentControlEnglishProofingLanguage-built.docx │ │ ├── ContentControlEnglishProofingLanguage.docx │ │ ├── ContentControlMixedProofingLanguage-built.docx │ │ ├── ContentControlMixedProofingLanguage.docx │ │ ├── ContentControlWithContent-built.docx │ │ ├── ContentControlWithContent.docx │ │ ├── ContentControlsWithDanishEnglishAndMixedProofingLanguages-built.docx │ │ ├── FooterContent-built.docx │ │ ├── FooterContent.docx │ │ ├── HeaderContent-built.docx │ │ ├── HeaderContent.docx │ │ ├── InlineContentControl-built.docx │ │ ├── InlineContentControl.docx │ │ ├── MultilineWithBulletPoints-built.docx │ │ ├── MultilineWithBulletPoints.docx │ │ ├── NestedContentControl-built.docx │ │ ├── NestedContentControl.docx │ │ ├── RowLevelContentControl-built.docx │ │ └── RowLevelContentControl.docx │ └── HeadersFooters │ │ ├── Dest │ │ ├── Fax (content control).docx │ │ ├── Fax.docx │ │ ├── Letter (content control).docx │ │ ├── Letter (run-level insert element).docx │ │ └── Letter.docx │ │ └── Src │ │ ├── Content-Controls.docx │ │ ├── Disclaimer.docx │ │ ├── Footer.docx │ │ ├── Letterhead-with-Watermark.docx │ │ ├── Letterhead.docx │ │ ├── Logo.docx │ │ ├── Watermark-1.docx │ │ └── Watermark-2.docx ├── DB001-Sections.docx ├── DB0016-DocDefaultStyles.docx ├── DB002-Landscape-Section.docx ├── DB002-Sections-With-Headers.docx ├── DB003-Only-Default-Header.docx ├── DB004-No-Headers.docx ├── DB005-Headers-With-Images.docx ├── DB006-Source1.docx ├── DB006-Source2.docx ├── DB006-Source3.docx ├── DB007-Abstract.docx ├── DB007-AuthorBiography.docx ├── DB007-Notes.docx ├── DB007-Spec.docx ├── DB007-WhitePaper.docx ├── DB010-FrontMatter.docx ├── DB010-Insert-01.docx ├── DB010-Insert-02.docx ├── DB010-Template.docx ├── DB011-Body-With-Shape.docx ├── DB011-Header-With-Shape.docx ├── DB012-Lists-With-Different-Numberings.docx ├── DB013a-Green-Heading1-Danish.docx ├── DB013a-Red-Heading1-English.docx ├── DB013b-Blue-List-English.docx ├── DB013b-Orange-List-Danish.docx ├── DB014-WebExtensions.docx ├── DB015-LatentStyles.docx ├── E0010.html ├── E0020.html ├── FA │ └── RevTracking │ │ ├── 001-DeletedRun.docx │ │ ├── 002-DeletedNumberedParagraphs.docx │ │ ├── 003-DeletedFieldCode.docx │ │ ├── 004-InsertedNumberingProperties.docx │ │ ├── 005-InsertedNumberedParagraph.docx │ │ ├── 006-DeletedTableRow.docx │ │ ├── 007-InsertedTableRow.docx │ │ ├── 008-InsertedFieldCode.docx │ │ ├── 009-InsertedParagraph.docx │ │ ├── 010-InsertedRun.docx │ │ ├── 011-InsertedMathChar.docx │ │ ├── 012-DeletedMathChar.docx │ │ ├── 013-DeletedParagraph.docx │ │ ├── 014-MovedParagraph.docx │ │ ├── 015-InsertedContentControl.docx │ │ ├── 016-DeletedContentControl.docx │ │ ├── 017-NumberingChange.docx │ │ ├── 018-ParagraphPropertiesChange.docx │ │ ├── 019-RunPropertiesChange.docx │ │ ├── 020-SectionPropertiesChange.docx │ │ ├── 021-TableGridChange.docx │ │ ├── 022-TablePropertiesChange.docx │ │ ├── 023-CellPropertiesChange.docx │ │ └── 024-RowPropertiesChange.docx ├── HC001-5DayTourPlanTemplate.docx ├── HC002-Hebrew-01.docx ├── HC003-Hebrew-02.docx ├── HC004-ResumeTemplate.docx ├── HC005-TaskPlanTemplate.docx ├── HC006-Test-01.docx ├── HC007-Test-02.docx ├── HC008-Test-03.docx ├── HC009-Test-04.docx ├── HC010-Test-05.docx ├── HC011-Test-06.docx ├── HC012-Test-07.docx ├── HC013-Test-08.docx ├── HC014-RTL-Table-01.docx ├── HC015-Vertical-Spacing-atLeast.docx ├── HC016-Horizontal-Spacing-firstLine.docx ├── HC017-Vertical-Alignment-Cell-01.docx ├── HC018-Vertical-Alignment-Para-01.docx ├── HC019-Hidden-Run.docx ├── HC020-Small-Caps.docx ├── HC021-Symbols.docx ├── HC022-Table-Of-Contents.docx ├── HC023-Hyperlink.docx ├── HC024-Tabs-01.docx ├── HC025-Tabs-02.docx ├── HC026-Tabs-03.docx ├── HC027-Tabs-04.docx ├── HC028-No-Break-Hyphen.docx ├── HC029-Table-Merged-Cells.docx ├── HC030-Content-Controls.docx ├── HC031-Complicated-Document.docx ├── HC032-Named-Color.docx ├── HC033-Run-With-Border.docx ├── HC034-Run-With-Position.docx ├── HC035-Strike-Through.docx ├── HC036-Super-Script.docx ├── HC037-Sub-Script.docx ├── HC038-Conflicting-Border-Weight.docx ├── HC039-Bold.docx ├── HC040-Hyperlink-Fieldcode-01.docx ├── HC041-Hyperlink-Fieldcode-02.docx ├── HC042-Image-Png.docx ├── HC043-Chart.docx ├── HC044-Embedded-Workbook.docx ├── HC045-Italic.docx ├── HC046-BoldAndItalic.docx ├── HC047-No-Section.docx ├── HC048-Excerpt.docx ├── HC049-Borders.docx ├── HC050-Shaded-Text-01.docx ├── HC051-Shaded-Text-02.docx ├── HC052-SmartArt.docx ├── HC060-Image-with-Hyperlink.docx ├── HC061-Hyperlink-in-Field.docx ├── HW002-Table01.docx ├── HW002-Table02.docx ├── HW002-Table03.docx ├── HW002-Table04.docx ├── HW002-Table05.docx ├── HW002-Table06.docx ├── HW002-Table07.docx ├── HW002-Table08.docx ├── HW002-Table09.docx ├── HW002-Table10.docx ├── HW002-Table11.docx ├── HW002-Table12.docx ├── HW002-Table13.docx ├── HW002-Table14.docx ├── HW002-Table15.docx ├── HW002-Table16.docx ├── HW002-Table17.docx ├── HW002-Table18.docx ├── HW010-SpanWithSingleSpace.docx ├── HW010-Symbols01.docx ├── HW010-Symbols02.docx ├── HW010-Tab01.docx ├── HW010-TableWithEmptyRows.docx ├── HW010-TableWithImage.docx ├── HW010-TableWithThreeEmptyRows.docx ├── LIR001-en-US-ordinal.docx ├── LIR002-en-US-ordinalText.docx ├── LIR003-en-US-upperLetter.docx ├── LIR004-en-US-upperRoman.docx ├── LIR005-fr-FR-cardinalText.docx ├── LIR006-fr-FR-ordinal.docx ├── LIR006-fr-FR-ordinalText.docx ├── LIR007-ru-RU-ordinalText.docx ├── LIR008-zh-CH-chineseCountingThousand.docx ├── LIR009-zh-CN-chineseCounting.docx ├── LIR010-zh-CN-ideographTraditional.docx ├── LIR011-en-US-00001.docx ├── LIR012-en-US-0001.docx ├── LIR013-en-US-001.docx ├── LIR014-en-US-01.docx ├── LIR015-en-US-cardinalText.docx ├── LIR016-en-US-decimal.docx ├── LIR017-en-US-decimalEnclosedCircle.docx ├── LIR018-en-US-decimalZero.docx ├── LIR019-en-US-lowerLetter.docx ├── LIR020-en-US-lowerRoman.docx ├── PB001-Input1.pptx ├── PB001-Input2.pptx ├── PB001-Input3.pptx ├── PP006-Videos.pptx ├── PU │ └── PU001-Test001.mht ├── Presentation.pptx ├── RA001-Tracked-Revisions-01.docx ├── RA001-Tracked-Revisions-02.docx ├── RC │ ├── RC001-After1.docx │ ├── RC001-After2.docx │ ├── RC001-Before.docx │ ├── RC002-Image-After1.docx │ ├── RC002-Image.docx │ ├── RC003-Multi-Paras-After.docx │ ├── RC003-Multi-Paras.docx │ ├── RC004-After1.docx │ ├── RC004-After2.docx │ ├── RC004-Before.docx │ ├── RC005-After1.docx │ ├── RC005-Before.docx │ ├── RC006-After1.docx │ ├── RC006-Before.docx │ ├── RC007-Endnotes-After.docx │ └── RC007-Endnotes-Before.docx ├── RP │ ├── RP001-Tracked-Revisions-01-Accepted.docx │ ├── RP001-Tracked-Revisions-01.docx │ ├── RP001-Tracked-Revisions-02-Accepted.docx │ ├── RP001-Tracked-Revisions-02.docx │ ├── RP002-Deleted-Text-Accepted.docx │ ├── RP002-Deleted-Text-Rejected.docx │ ├── RP002-Deleted-Text.docx │ ├── RP003-Inserted-Text-Accepted.docx │ ├── RP003-Inserted-Text-Rejected.docx │ ├── RP003-Inserted-Text.docx │ ├── RP004-Deleted-Text-in-CC-Accepted.docx │ ├── RP004-Deleted-Text-in-CC-Rejected.docx │ ├── RP004-Deleted-Text-in-CC.docx │ ├── RP005-Deleted-Paragraph-Mark-Accepted.docx │ ├── RP005-Deleted-Paragraph-Mark-Rejected.docx │ ├── RP005-Deleted-Paragraph-Mark.docx │ ├── RP006-Inserted-Paragraph-Mark-Accepted.docx │ ├── RP006-Inserted-Paragraph-Mark-Rejected.docx │ ├── RP006-Inserted-Paragraph-Mark.docx │ ├── RP007-Multiple-Deleted-Para-Mark-Accepted.docx │ ├── RP007-Multiple-Deleted-Para-Mark-Rejected.docx │ ├── RP007-Multiple-Deleted-Para-Mark.docx │ ├── RP008-Multiple-Inserted-Para-Mark-Accepted.docx │ ├── RP008-Multiple-Inserted-Para-Mark-Rejected.docx │ ├── RP008-Multiple-Inserted-Para-Mark.docx │ ├── RP009-Deleted-Table-Row-Accepted.docx │ ├── RP009-Deleted-Table-Row-Rejected.docx │ ├── RP009-Deleted-Table-Row.docx │ ├── RP010-Inserted-Table-Row-Accepted.docx │ ├── RP010-Inserted-Table-Row-Rejected.docx │ ├── RP010-Inserted-Table-Row.docx │ ├── RP011-Multiple-Deleted-Rows-Accepted.docx │ ├── RP011-Multiple-Deleted-Rows-Rejected.docx │ ├── RP011-Multiple-Deleted-Rows.docx │ ├── RP012-Multiple-Inserted-Rows-Accepted.docx │ ├── RP012-Multiple-Inserted-Rows-Rejected.docx │ ├── RP012-Multiple-Inserted-Rows.docx │ ├── RP013-Deleted-Math-Control-Char-Accepted.docx │ ├── RP013-Deleted-Math-Control-Char-Rejected.docx │ ├── RP013-Deleted-Math-Control-Char.docx │ ├── RP014-Inserted-Math-Control-Char-Accepted.docx │ ├── RP014-Inserted-Math-Control-Char-Rejected.docx │ ├── RP014-Inserted-Math-Control-Char.docx │ ├── RP015-MoveFrom-MoveTo-Accepted.docx │ ├── RP015-MoveFrom-MoveTo-Rejected.docx │ ├── RP015-MoveFrom-MoveTo.docx │ ├── RP016-Deleted-CC-Accepted.docx │ ├── RP016-Deleted-CC-Rejected.docx │ ├── RP016-Deleted-CC.docx │ ├── RP017-Inserted-CC-Accepted.docx │ ├── RP017-Inserted-CC-Rejected.docx │ ├── RP017-Inserted-CC.docx │ ├── RP018-MoveFrom-MoveTo-CC-Accepted.docx │ ├── RP018-MoveFrom-MoveTo-CC-Rejected.docx │ ├── RP018-MoveFrom-MoveTo-CC.docx │ ├── RP019-Deleted-Field-Code-Accepted.docx │ ├── RP019-Deleted-Field-Code-Rejected.docx │ ├── RP019-Deleted-Field-Code.docx │ ├── RP020-Inserted-Field-Code-Accepted.docx │ ├── RP020-Inserted-Field-Code-Rejected.docx │ ├── RP020-Inserted-Field-Code.docx │ ├── RP021-Inserted-Numbering-Properties-Accepted.docx │ ├── RP021-Inserted-Numbering-Properties-Rejected.docx │ ├── RP021-Inserted-Numbering-Properties.docx │ ├── RP022-NumberingChange-Accepted.docx │ ├── RP022-NumberingChange-Rejected.docx │ ├── RP022-NumberingChange.docx │ ├── RP023-NumberingChange-Accepted.docx │ ├── RP023-NumberingChange-Rejected.docx │ ├── RP023-NumberingChange.docx │ ├── RP024-ParagraphMark-rPr-Change-Accepted.docx │ ├── RP024-ParagraphMark-rPr-Change-Rejected.docx │ ├── RP024-ParagraphMark-rPr-Change.docx │ ├── RP025-Paragraph-Props-Change-Accepted.docx │ ├── RP025-Paragraph-Props-Change-Rejected.docx │ ├── RP025-Paragraph-Props-Change.docx │ ├── RP026-NumberingChange-Accepted.docx │ ├── RP026-NumberingChange-Rejected.docx │ ├── RP026-NumberingChange.docx │ ├── RP027-Change-Section-Accepted.docx │ ├── RP027-Change-Section-Rejected.docx │ ├── RP027-Change-Section.docx │ ├── RP028-Table-Grid-Change-Accepted.docx │ ├── RP028-Table-Grid-Change-Rejected.docx │ ├── RP028-Table-Grid-Change.docx │ ├── RP029-Table-Row-Props-Change-Accepted.docx │ ├── RP029-Table-Row-Props-Change-Rejected.docx │ ├── RP029-Table-Row-Props-Change.docx │ ├── RP030-Table-Row-Props-Change-Accepted.docx │ ├── RP030-Table-Row-Props-Change-Rejected.docx │ ├── RP030-Table-Row-Props-Change.docx │ ├── RP031-Table-Prop-Change-Accepted.docx │ ├── RP031-Table-Prop-Change-Rejected.docx │ ├── RP031-Table-Prop-Change.docx │ ├── RP032-Table-Prop-Change-Accepted.docx │ ├── RP032-Table-Prop-Change-Rejected.docx │ ├── RP032-Table-Prop-Change.docx │ ├── RP033-Table-Prop-Ex-Change-Accepted.docx │ ├── RP033-Table-Prop-Ex-Change-Rejected.docx │ ├── RP033-Table-Prop-Ex-Change.docx │ ├── RP034-Deleted-Cells-Accepted.docx │ ├── RP034-Deleted-Cells-Rejected.docx │ ├── RP034-Deleted-Cells.docx │ ├── RP035-Inserted-Cells-Accepted.docx │ ├── RP035-Inserted-Cells-Rejected.docx │ ├── RP035-Inserted-Cells.docx │ ├── RP036-Vert-Merged-Cells-Accepted.docx │ ├── RP036-Vert-Merged-Cells-Rejected.docx │ ├── RP036-Vert-Merged-Cells.docx │ ├── RP037-Changed-Style-Para-Props-Accepted.docx │ ├── RP037-Changed-Style-Para-Props-Rejected.docx │ ├── RP037-Changed-Style-Para-Props.docx │ ├── RP038-Inserted-Paras-at-End-Accepted.docx │ ├── RP038-Inserted-Paras-at-End-Rejected.docx │ ├── RP038-Inserted-Paras-at-End.docx │ ├── RP039-Inserted-Paras-at-End-Accepted.docx │ ├── RP039-Inserted-Paras-at-End-Rejected.docx │ ├── RP039-Inserted-Paras-at-End.docx │ ├── RP040-Deleted-Paras-at-End-Accepted.docx │ ├── RP040-Deleted-Paras-at-End-Rejected.docx │ ├── RP040-Deleted-Paras-at-End.docx │ ├── RP041-Cell-With-Empty-Paras-at-End-Accepted.docx │ ├── RP041-Cell-With-Empty-Paras-at-End-Rejected.docx │ ├── RP041-Cell-With-Empty-Paras-at-End.docx │ ├── RP042-Deleted-Para-Mark-at-End-Accepted.docx │ ├── RP042-Deleted-Para-Mark-at-End-Rejected.docx │ ├── RP042-Deleted-Para-Mark-at-End.docx │ ├── RP043-MERGEFORMAT-Field-Code-Accepted.docx │ ├── RP043-MERGEFORMAT-Field-Code-Rejected.docx │ ├── RP043-MERGEFORMAT-Field-Code.docx │ ├── RP044-MERGEFORMAT-Field-Code-Accepted.docx │ ├── RP044-MERGEFORMAT-Field-Code-Rejected.docx │ ├── RP044-MERGEFORMAT-Field-Code.docx │ ├── RP045-One-and-Half-Deleted-Lines-at-End-Accepted.docx │ ├── RP045-One-and-Half-Deleted-Lines-at-End-Rejected.docx │ ├── RP045-One-and-Half-Deleted-Lines-at-End.docx │ ├── RP046-Consecutive-Deleted-Ranges-Accepted.docx │ ├── RP046-Consecutive-Deleted-Ranges-Rejected.docx │ ├── RP046-Consecutive-Deleted-Ranges.docx │ ├── RP047-Inserted-and-Deleted-Paragraph-Mark-Accepted.docx │ ├── RP047-Inserted-and-Deleted-Paragraph-Mark-Rejected.docx │ ├── RP047-Inserted-and-Deleted-Paragraph-Mark.docx │ ├── RP048-Deleted-Inserted-Para-Mark-Accepted.docx │ ├── RP048-Deleted-Inserted-Para-Mark-Rejected.docx │ ├── RP048-Deleted-Inserted-Para-Mark.docx │ ├── RP049-Deleted-Para-Before-Table-Accepted.docx │ ├── RP049-Deleted-Para-Before-Table-Rejected.docx │ ├── RP049-Deleted-Para-Before-Table.docx │ ├── RP050-Deleted-Footnote-Accepted.docx │ ├── RP050-Deleted-Footnote-Rejected.docx │ ├── RP050-Deleted-Footnote.docx │ ├── RP051-Arabic-Accepted.docx │ ├── RP051-Arabic-Rejected.docx │ ├── RP051-Arabic.docx │ ├── RP052-Deleted-Para-Mark-Accepted.docx │ ├── RP052-Deleted-Para-Mark-Rejected.docx │ ├── RP052-Deleted-Para-Mark.docx │ └── RP999-Table.docx ├── SH001-Table.xlsx ├── SH002-TwoTablesTwoSheets.xlsx ├── SH003-TableWithDateInFirstColumn.xlsx ├── SH004-TableAtOffsetLocation.xlsx ├── SH005-Table-With-SharedStrings.xlsx ├── SH006-Table-No-SharedStrings.xlsx ├── SH007-One-Cell-Table.xlsx ├── SH008-Table-With-Tall-Row.xlsx ├── SH009-Table-With-Wide-Column.xlsx ├── SH101-SimpleFormats.xlsx ├── SH102-9-x-9.xlsx ├── SH103-No-SharedString.xlsx ├── SH104-With-SharedString.xlsx ├── SH105-No-SharedString.xlsx ├── SH106-9-x-9-Formatted.xlsx ├── SH107-9-x-9-Formatted-Table.xlsx ├── SH108-SimpleFormattedCell.xlsx ├── SH109-CellWithBorder.xlsx ├── SH110-CellWithMasterStyle.xlsx ├── SH111-ChangedDefaultColumnWidth.xlsx ├── SH112-NotVertMergedCell.xlsx ├── SH113-VertMergedCell.xlsx ├── SH114-Centered-Cell.xlsx ├── SH115-DigitsToRight.xlsx ├── SH116-FmtNumId-1.xlsx ├── SH117-FmtNumId-2.xlsx ├── SH118-FmtNumId-3.xlsx ├── SH119-FmtNumId-4.xlsx ├── SH120-FmtNumId-9.xlsx ├── SH121-FmtNumId-11.xlsx ├── SH122-FmtNumId-12.xlsx ├── SH123-FmtNumId-14.xlsx ├── SH124-FmtNumId-15.xlsx ├── SH125-FmtNumId-16.xlsx ├── SH126-FmtNumId-17.xlsx ├── SH127-FmtNumId-18.xlsx ├── SH128-FmtNumId-19.xlsx ├── SH129-FmtNumId-20.xlsx ├── SH130-FmtNumId-21.xlsx ├── SH131-FmtNumId-22.xlsx ├── SH132-FmtNumId-46.xlsx ├── SH133-FmtNumId-47.xlsx ├── SH151-Custom-Cell-Format-Currency.xlsx ├── SH152-Custom-Cell-Format.xlsx ├── SH201-Cell-C1-Without-R-Attr.xlsx ├── SH202-Cell-C1-D1-Without-R-Attr.xlsx ├── SH203-Cell-C1-D1-E1-Without-R-Attr.xlsx ├── SH204-Cell-A1-B1-C1-Without-R-Attr.xlsx ├── Spreadsheet.xlsx ├── T0010.html ├── T0011.html ├── T0012.html ├── T0013.html ├── T0014.html ├── T0015.html ├── T0020.html ├── T0030.html ├── T0040.html ├── T0050.html ├── T0060.html ├── T0070.html ├── T0080.html ├── T0090.html ├── T0100.html ├── T0110.html ├── T0111.html ├── T0112.html ├── T0120.html ├── T0130.html ├── T0140.html ├── T0150.html ├── T0160.html ├── T0170.html ├── T0180.html ├── T0190.html ├── T0200.html ├── T0210.html ├── T0220.html ├── T0230.html ├── T0240.html ├── T0250.html ├── T0251.html ├── T0260.html ├── T0270.html ├── T0280.html ├── T0290.html ├── T0300.html ├── T0310.html ├── T0320.html ├── T0330.html ├── T0340.html ├── T0350.html ├── T0360.html ├── T0370.html ├── T0380.html ├── T0390.html ├── T0400.html ├── T0410.html ├── T0420.html ├── T0430.html ├── T0431.html ├── T0432.html ├── T0440.html ├── T0450.html ├── T0460.html ├── T0470.html ├── T0480.html ├── T0490.html ├── T0500.html ├── T0510.html ├── T0520.html ├── T0530.html ├── T0540.html ├── T0550.html ├── T0560.html ├── T0570.html ├── T0580.html ├── T0590.html ├── T0600.html ├── T0610.html ├── T0620.html ├── T0622.html ├── T0630.html ├── T0640.html ├── T0650.html ├── T0651.html ├── T0660.html ├── T0670.html ├── T0680.html ├── T0690.html ├── T0691.html ├── T0692.html ├── T0700.html ├── T0710.html ├── T0720.html ├── T0730.html ├── T0740.html ├── T0742.html ├── T0745.html ├── T0750.html ├── T0760.html ├── T0770.html ├── T0780.html ├── T0790.html ├── T0791.html ├── T0792.html ├── T0793.html ├── T0794.html ├── T0795.html ├── T0802.html ├── T0804.html ├── T0805.html ├── T0810.html ├── T0812.html ├── T0814.html ├── T0820.html ├── T0821.html ├── T0830.html ├── T0840.html ├── T0850.html ├── T0851.html ├── T0860.html ├── T0870.html ├── T0880.html ├── T0890.html ├── T0900.html ├── T0910.html ├── T0920.html ├── T0921.html ├── T0921_files │ └── img.PNG ├── T0922.html ├── T0922_files │ └── img.PNG ├── T0923.html ├── T0924.html ├── T0924_files │ └── img.PNG ├── T0925.html ├── T0925_files │ └── img.PNG ├── T0926.html ├── T0927.html ├── T0928.html ├── T0929.html ├── T0930.html ├── T0931.html ├── T0932.html ├── T0933.html ├── T0934.html ├── T0935.html ├── T0936.html ├── T0936_files │ └── image001.png ├── T0940.html ├── T0945.html ├── T0948.html ├── T0950.html ├── T0955.html ├── T0960.html ├── T0968.html ├── T0970.html ├── T0980.html ├── T0990.html ├── T1000.html ├── T1010.html ├── T1020.html ├── T1030.html ├── T1040.html ├── T1050.html ├── T1060.html ├── T1070.html ├── T1080.html ├── T1100.html ├── T1110.html ├── T1111.html ├── T1112.html ├── T1120.html ├── T1130.html ├── T1131.html ├── T1132.html ├── T1140.html ├── T1150.html ├── T1160.html ├── T1170.html ├── T1180.html ├── T1190.html ├── T1200.html ├── T1201.html ├── T1210.html ├── T1220.html ├── T1230.html ├── T1240.html ├── T1241.html ├── T1242.html ├── T1250.html ├── T1251.html ├── T1260.html ├── T1270.html ├── T1280.html ├── T1290.html ├── T1300.html ├── T1310.html ├── T1320.html ├── T1330.html ├── T1340.html ├── T1350.html ├── T1360.html ├── T1370.html ├── T1380.html ├── T1390.html ├── T1400.html ├── T1410.html ├── T1420.html ├── T1430.html ├── T1440.html ├── T1450.html ├── T1460.html ├── T1470.html ├── T1480.html ├── T1490.html ├── T1500.html ├── T1510.html ├── T1520.html ├── T1530.html ├── T1540.html ├── T1550.html ├── T1560.html ├── T1570.html ├── T1580.html ├── T1590.html ├── T1591.html ├── T1610.html ├── T1620.html ├── T1630.html ├── T1640.html ├── T1650.html ├── T1660.html ├── T1670.html ├── T1680.html ├── T1690.html ├── T1700.html ├── T1710.html ├── T1800.html ├── T1810.html ├── T1820.html ├── T1830.html ├── T1840.html ├── T1850.html ├── WC │ ├── WC001-Digits-Deleted-Paragraph.docx │ ├── WC001-Digits-Mod.docx │ ├── WC001-Digits.docx │ ├── WC002-DeleteAtBeginning.docx │ ├── WC002-DeleteAtEnd.docx │ ├── WC002-DeleteInMiddle.docx │ ├── WC002-DiffAtBeginning.docx │ ├── WC002-DiffInMiddle.docx │ ├── WC002-InsertAtBeginning.docx │ ├── WC002-InsertAtEnd.docx │ ├── WC002-InsertInMiddle.docx │ ├── WC002-Unmodified.docx │ ├── WC004-Large-Mod.docx │ ├── WC004-Large.docx │ ├── WC006-Table-Delete-Contests-of-Row.docx │ ├── WC006-Table-Delete-Row.docx │ ├── WC006-Table.docx │ ├── WC007-Deleted-at-Beginning-of-Para.docx │ ├── WC007-Longest-At-End.docx │ ├── WC007-Moved-into-Table.docx │ ├── WC007-Unmodified.docx │ ├── WC009-Table-Cell-1-1-Mod.docx │ ├── WC009-Table-Unmodified.docx │ ├── WC010-Para-Before-Table-Mod.docx │ ├── WC010-Para-Before-Table-Unmodified.docx │ ├── WC011-After.docx │ ├── WC011-Before.docx │ ├── WC012-Math-After.docx │ ├── WC012-Math-Before.docx │ ├── WC013-Image-After.docx │ ├── WC013-Image-After2.docx │ ├── WC013-Image-Before.docx │ ├── WC013-Image-Before2.docx │ ├── WC014-SmartArt-After.docx │ ├── WC014-SmartArt-Before.docx │ ├── WC014-SmartArt-With-Image-After.docx │ ├── WC014-SmartArt-With-Image-Before.docx │ ├── WC014-SmartArt-With-Image-Deleted-After.docx │ ├── WC014-SmartArt-With-Image-Deleted-After2.docx │ ├── WC015-Three-Paragraphs-After.docx │ ├── WC015-Three-Paragraphs.docx │ ├── WC016-Para-Image-Para-w-Deleted-Image.docx │ ├── WC016-Para-Image-Para.docx │ ├── WC017-Image-After.docx │ ├── WC017-Image.docx │ ├── WC018-Field-Simple-After-1.docx │ ├── WC018-Field-Simple-After-2.docx │ ├── WC018-Field-Simple-Before.docx │ ├── WC019-Hyperlink-After-1.docx │ ├── WC019-Hyperlink-After-2.docx │ ├── WC019-Hyperlink-Before.docx │ ├── WC020-FootNote-After-1.docx │ ├── WC020-FootNote-After-2.docx │ ├── WC020-FootNote-Before.docx │ ├── WC021-Math-After-1.docx │ ├── WC021-Math-After-2.docx │ ├── WC021-Math-Before-1.docx │ ├── WC021-Math-Before-2.docx │ ├── WC022-Image-Math-Para-After.docx │ ├── WC022-Image-Math-Para-Before.docx │ ├── WC023-Table-4-Row-Image-After-Delete-1-Row.docx │ ├── WC023-Table-4-Row-Image-Before.docx │ ├── WC024-Table-After.docx │ ├── WC024-Table-After2.docx │ ├── WC024-Table-Before.docx │ ├── WC025-Simple-Table-After.docx │ ├── WC025-Simple-Table-Before.docx │ ├── WC026-Long-Table-After-1.docx │ ├── WC026-Long-Table-Before.docx │ ├── WC027-Twenty-Paras-After-1.docx │ ├── WC027-Twenty-Paras-After-2.docx │ ├── WC027-Twenty-Paras-After-3.docx │ ├── WC027-Twenty-Paras-Before.docx │ ├── WC030-Image-Math-After.docx │ ├── WC030-Image-Math-Before.docx │ ├── WC031-Two-Maths-After.docx │ ├── WC031-Two-Maths-Before.docx │ ├── WC032-Para-with-Para-Props-After.docx │ ├── WC032-Para-with-Para-Props.docx │ ├── WC033-Merged-Cells-After1.docx │ ├── WC033-Merged-Cells-After2.docx │ ├── WC033-Merged-Cells-Before.docx │ ├── WC034-Endnotes-After1.docx │ ├── WC034-Endnotes-After2.docx │ ├── WC034-Endnotes-After3.docx │ ├── WC034-Endnotes-Before.docx │ ├── WC034-Footnotes-After1.docx │ ├── WC034-Footnotes-After2.docx │ ├── WC034-Footnotes-After3.docx │ ├── WC034-Footnotes-Before.docx │ ├── WC035-Endnote-After.docx │ ├── WC035-Endnote-Before.docx │ ├── WC035-Footnote-After.docx │ ├── WC035-Footnote-Before.docx │ ├── WC036-Endnote-With-Table-After.docx │ ├── WC036-Endnote-With-Table-Before.docx │ ├── WC036-Footnote-With-Table-After.docx │ ├── WC036-Footnote-With-Table-Before.docx │ ├── WC037-Textbox-After1.docx │ ├── WC037-Textbox-Before.docx │ ├── WC038-Document-With-BR-After.docx │ ├── WC038-Document-With-BR-Before.docx │ ├── WC039-Break-In-Row-After1.docx │ ├── WC039-Break-In-Row.docx │ ├── WC040-Case-After.docx │ ├── WC040-Case-Before.docx │ ├── WC041-Table-5-Mod.docx │ ├── WC041-Table-5.docx │ ├── WC042-Table-5-Mod.docx │ ├── WC042-Table-5.docx │ ├── WC043-Nested-Table-Mod.docx │ ├── WC043-Nested-Table.docx │ ├── WC044-Text-Box-Mod.docx │ ├── WC044-Text-Box.docx │ ├── WC045-Text-Box-Mod.docx │ ├── WC045-Text-Box.docx │ ├── WC046-Two-Text-Box-Mod.docx │ ├── WC046-Two-Text-Box.docx │ ├── WC047-Two-Text-Box-Mod.docx │ ├── WC047-Two-Text-Box.docx │ ├── WC048-Text-Box-in-Cell-Mod.docx │ ├── WC048-Text-Box-in-Cell.docx │ ├── WC049-Text-Box-in-Cell-Mod.docx │ ├── WC049-Text-Box-in-Cell.docx │ ├── WC050-Table-in-Text-Box-Mod.docx │ ├── WC050-Table-in-Text-Box.docx │ ├── WC051-Table-in-Text-Box-Mod.docx │ ├── WC051-Table-in-Text-Box.docx │ ├── WC052-SmartArt-Same-Mod.docx │ ├── WC052-SmartArt-Same.docx │ ├── WC053-Text-in-Cell-Mod.docx │ ├── WC053-Text-in-Cell.docx │ ├── WC054-Text-in-Cell-Mod.docx │ ├── WC054-Text-in-Cell.docx │ ├── WC055-French-Mod.docx │ ├── WC055-French.docx │ ├── WC056-French-Mod.docx │ ├── WC056-French.docx │ ├── WC057-Table-Merged-Cell-Mod.docx │ ├── WC057-Table-Merged-Cell.docx │ ├── WC058-Table-Merged-Cell-Mod.docx │ ├── WC058-Table-Merged-Cell.docx │ ├── WC059-Footnote-Mod.docx │ ├── WC059-Footnote.docx │ ├── WC060-Endnote-Mod.docx │ ├── WC060-Endnote.docx │ ├── WC061-Style-Added-Mod.docx │ ├── WC061-Style-Added.docx │ ├── WC062-New-Char-Style-Added-Mod.docx │ ├── WC062-New-Char-Style-Added.docx │ ├── WC063-Footnote-Mod.docx │ ├── WC063-Footnote.docx │ ├── WC064-Footnote-Mod.docx │ ├── WC064-Footnote.docx │ ├── WC065-Textbox-Deleted.docx │ ├── WC065-Textbox-Mod.docx │ ├── WC065-Textbox.docx │ ├── WC066-Textbox-Before-Ins-Mod.docx │ ├── WC066-Textbox-Before-Ins.docx │ ├── WC067-Textbox-Image-Mod.docx │ └── WC067-Textbox-Image.docx ├── img.png └── img2.png ├── appveyor.yml ├── rules.ruleset └── stylecop.json /NewDocxDocuments/Bookmark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Bookmark.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Bookmark.txt: -------------------------------------------------------------------------------- 1 | Bookmark and hyperlink to the bookmark. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/BulletedText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/BulletedText.docx -------------------------------------------------------------------------------- /NewDocxDocuments/BulletedText.txt: -------------------------------------------------------------------------------- 1 | Bulleted text. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Chart.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Chart.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Chart.txt: -------------------------------------------------------------------------------- 1 | Chart. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Comment.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Comment.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Comment.txt: -------------------------------------------------------------------------------- 1 | Paragraph that contains a comment. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/ContentControls.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/ContentControls.docx -------------------------------------------------------------------------------- /NewDocxDocuments/ContentControls.txt: -------------------------------------------------------------------------------- 1 | Content controls of various types. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/ContentControlsNested.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/ContentControlsNested.docx -------------------------------------------------------------------------------- /NewDocxDocuments/ContentControlsNested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/ContentControlsNested.txt -------------------------------------------------------------------------------- /NewDocxDocuments/CoverPage.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/CoverPage.docx -------------------------------------------------------------------------------- /NewDocxDocuments/CoverPage.txt: -------------------------------------------------------------------------------- 1 | Cover page. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/EmbeddedWorkbook.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/EmbeddedWorkbook.docx -------------------------------------------------------------------------------- /NewDocxDocuments/EmbeddedWorkbook.txt: -------------------------------------------------------------------------------- 1 | Embedded Excel workbook. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Empty.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Empty.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Empty.txt: -------------------------------------------------------------------------------- 1 | Single blank paragraph. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/EndNote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/EndNote.docx -------------------------------------------------------------------------------- /NewDocxDocuments/EndNote.txt: -------------------------------------------------------------------------------- 1 | Endnote. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Equation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Equation.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Equation.txt: -------------------------------------------------------------------------------- 1 | Math equation. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Fields.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Fields.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Fields.txt: -------------------------------------------------------------------------------- 1 | Date-time field 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Fonts.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Fonts.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Fonts.txt: -------------------------------------------------------------------------------- 1 | Various fonts. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/FootNote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/FootNote.docx -------------------------------------------------------------------------------- /NewDocxDocuments/FootNote.txt: -------------------------------------------------------------------------------- 1 | Footnote. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/FormattedText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/FormattedText.docx -------------------------------------------------------------------------------- /NewDocxDocuments/FormattedText.txt: -------------------------------------------------------------------------------- 1 | Two paragraphs with text formatting. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Headings.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Headings.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Headings.txt: -------------------------------------------------------------------------------- 1 | Headings 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/HierarchicalNumberedList.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/HierarchicalNumberedList.docx -------------------------------------------------------------------------------- /NewDocxDocuments/HierarchicalNumberedList.txt: -------------------------------------------------------------------------------- 1 | Hierarchical numbered list. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/HorizontalWhiteSpace.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/HorizontalWhiteSpace.docx -------------------------------------------------------------------------------- /NewDocxDocuments/HorizontalWhiteSpace.txt: -------------------------------------------------------------------------------- 1 | First line indent, hanging indent, indented paragraphs. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Hyperlink.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Hyperlink.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Hyperlink.txt: -------------------------------------------------------------------------------- 1 | Bookmark and hyperlink to the bookmark. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Image.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Image.txt: -------------------------------------------------------------------------------- 1 | Image. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Justified.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Justified.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Justified.txt: -------------------------------------------------------------------------------- 1 | Justified text. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/NumberedList.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/NumberedList.docx -------------------------------------------------------------------------------- /NewDocxDocuments/NumberedList.txt: -------------------------------------------------------------------------------- 1 | Simple numbered list. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/NumberedListRomanNumerals.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/NumberedListRomanNumerals.docx -------------------------------------------------------------------------------- /NewDocxDocuments/NumberedListRomanNumerals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/NumberedListRomanNumerals.txt -------------------------------------------------------------------------------- /NewDocxDocuments/ParagraphBorder.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/ParagraphBorder.docx -------------------------------------------------------------------------------- /NewDocxDocuments/ParagraphBorder.txt: -------------------------------------------------------------------------------- 1 | Paragraph border. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Plain.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Plain.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Plain.txt: -------------------------------------------------------------------------------- 1 | Plain text. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/RevisionTracking.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/RevisionTracking.docx -------------------------------------------------------------------------------- /NewDocxDocuments/RevisionTracking.txt: -------------------------------------------------------------------------------- 1 | Revision tracking. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/RightJustified.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/RightJustified.docx -------------------------------------------------------------------------------- /NewDocxDocuments/RightJustified.txt: -------------------------------------------------------------------------------- 1 | Right justified text. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Section.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Section.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Section.txt: -------------------------------------------------------------------------------- 1 | Landscape section. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/SectionWithWatermark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/SectionWithWatermark.docx -------------------------------------------------------------------------------- /NewDocxDocuments/SectionWithWatermark.txt: -------------------------------------------------------------------------------- 1 | Section with watermark. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Shading.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Shading.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Shading.txt: -------------------------------------------------------------------------------- 1 | Shaded paragraph. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Shape.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Shape.txt: -------------------------------------------------------------------------------- 1 | Shapes. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/SmartArt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/SmartArt.docx -------------------------------------------------------------------------------- /NewDocxDocuments/SmartArt.txt: -------------------------------------------------------------------------------- 1 | SmartArt. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Symbols.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Symbols.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Symbols.txt: -------------------------------------------------------------------------------- 1 | Symbols. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Table.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Table.txt: -------------------------------------------------------------------------------- 1 | Table that has a table style applied. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/TableOfContents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/TableOfContents.docx -------------------------------------------------------------------------------- /NewDocxDocuments/TableOfContents.txt: -------------------------------------------------------------------------------- 1 | Table of contents. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/TextBox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/TextBox.docx -------------------------------------------------------------------------------- /NewDocxDocuments/TextBox.txt: -------------------------------------------------------------------------------- 1 | Text box. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/TextEffects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/TextEffects.docx -------------------------------------------------------------------------------- /NewDocxDocuments/TextEffects.txt: -------------------------------------------------------------------------------- 1 | Text effects. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/Theme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/Theme.docx -------------------------------------------------------------------------------- /NewDocxDocuments/Theme.txt: -------------------------------------------------------------------------------- 1 | Theme. 2 | -------------------------------------------------------------------------------- /NewDocxDocuments/VerticalWhiteSpace.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewDocxDocuments/VerticalWhiteSpace.docx -------------------------------------------------------------------------------- /NewDocxDocuments/VerticalWhiteSpace.txt: -------------------------------------------------------------------------------- 1 | Vertical space before and after paragraphs. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/AdjacencyTheme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/AdjacencyTheme.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/AdjacencyTheme.txt: -------------------------------------------------------------------------------- 1 | Adjacency Theme 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/AnglesTheme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/AnglesTheme.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/AnglesTheme.txt: -------------------------------------------------------------------------------- 1 | Angles Theme. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/ApexTheme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/ApexTheme.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/ApexTheme.txt: -------------------------------------------------------------------------------- 1 | Apex Theme. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/BlankLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/BlankLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/BlankLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Blank layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/ComparisonLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/ComparisonLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/ComparisonLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Comparison layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/ContentWithCaptionLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/ContentWithCaptionLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/ContentWithCaptionLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Content With Caption layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/Empty.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/Empty.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/Empty.txt: -------------------------------------------------------------------------------- 1 | No slides. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/FiveSlides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/FiveSlides.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/FiveSlides.txt: -------------------------------------------------------------------------------- 1 | No slides. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/PictureWithCaptionLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/PictureWithCaptionLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/PictureWithCaptionLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Picture With Caption layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/SectionHeaderLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/SectionHeaderLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/SectionHeaderLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Section Header layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/SlideTransitions.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/SlideTransitions.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/SlideTransitions.txt: -------------------------------------------------------------------------------- 1 | Slide Transitions. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/TenSlides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/TenSlides.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/TenSlides.txt: -------------------------------------------------------------------------------- 1 | Ten Slides. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/TitleAndContentLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/TitleAndContentLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/TitleAndContentLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Title and Content layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/TitleLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/TitleLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/TitleLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Title layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/TitleOnlyLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/TitleOnlyLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/TitleOnlyLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Title Only layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/TwoContentLayout.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/TwoContentLayout.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/TwoContentLayout.txt: -------------------------------------------------------------------------------- 1 | Slide with Two Content layout. 2 | -------------------------------------------------------------------------------- /NewPptxPresentations/WaveFormTheme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/NewPptxPresentations/WaveFormTheme.pptx -------------------------------------------------------------------------------- /NewPptxPresentations/WaveFormTheme.txt: -------------------------------------------------------------------------------- 1 | Wave Form Theme. 2 | -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/DocumentBuilder02/Spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/DocumentBuilder02/Spec.docx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/DocumentBuilder04/Mars.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/DocumentBuilder04/Mars.docx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/DocumentBuilder04/Sun.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/DocumentBuilder04/Sun.docx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/Formulas01/Formulas.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/Formulas01/Formulas.xlsx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/MetricsGetter01/Styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/MetricsGetter01/Styles.docx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/MetricsGetter01/Tables.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/MetricsGetter01/Tables.xlsx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/TextReplacer01/Test01.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/TextReplacer01/Test01.pptx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/TextReplacer01/Test02.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/TextReplacer01/Test02.pptx -------------------------------------------------------------------------------- /OpenXmlPowerToolsExamples/TextReplacer01/Test03.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/OpenXmlPowerToolsExamples/TextReplacer01/Test03.pptx -------------------------------------------------------------------------------- /TestFiles/Blank-altChunk.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/Blank-altChunk.docx -------------------------------------------------------------------------------- /TestFiles/Blank-wml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/Blank-wml.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA001-Plain-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA001-Plain-Mod.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA001-Plain.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA001-Plain.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA002-Bookmark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA002-Bookmark.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA003-Numbered-List.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA003-Numbered-List.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA004-TwoParas.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA004-TwoParas.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA005-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA005-Table.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA006-ContentControl.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA006-ContentControl.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA007-DayLong.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA007-DayLong.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA008-Footnote-Reference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA008-Footnote-Reference.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA009-altChunk.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA009-altChunk.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA010-Delete-Run.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA010-Delete-Run.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA011-Insert-Run.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA011-Insert-Run.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA012-fldSimple.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA012-fldSimple.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA013-Lots-of-Stuff.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA013-Lots-of-Stuff.docx -------------------------------------------------------------------------------- /TestFiles/CA/CA014-Complex-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CA/CA014-Complex-Table.docx -------------------------------------------------------------------------------- /TestFiles/CU001-Chart-Cached-Data-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU001-Chart-Cached-Data-01.docx -------------------------------------------------------------------------------- /TestFiles/CU002-Chart-Cached-Data-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU002-Chart-Cached-Data-02.docx -------------------------------------------------------------------------------- /TestFiles/CU003-Chart-Cached-Data-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU003-Chart-Cached-Data-03.docx -------------------------------------------------------------------------------- /TestFiles/CU004-Chart-Cached-Data-04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU004-Chart-Cached-Data-04.docx -------------------------------------------------------------------------------- /TestFiles/CU005-Chart-Cached-Data-05.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU005-Chart-Cached-Data-05.docx -------------------------------------------------------------------------------- /TestFiles/CU006-Chart-Cached-Data-06.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU006-Chart-Cached-Data-06.docx -------------------------------------------------------------------------------- /TestFiles/CU007-Chart-Cached-Data-07.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU007-Chart-Cached-Data-07.docx -------------------------------------------------------------------------------- /TestFiles/CU008-Chart-Cached-Data-08.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU008-Chart-Cached-Data-08.docx -------------------------------------------------------------------------------- /TestFiles/CU009-Chart-Embedded-Xlsx-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU009-Chart-Embedded-Xlsx-01.docx -------------------------------------------------------------------------------- /TestFiles/CU010-Chart-Embedded-Xlsx-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU010-Chart-Embedded-Xlsx-02.docx -------------------------------------------------------------------------------- /TestFiles/CU011-Chart-Embedded-Xlsx-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU011-Chart-Embedded-Xlsx-03.docx -------------------------------------------------------------------------------- /TestFiles/CU012-Chart-Embedded-Xlsx-04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU012-Chart-Embedded-Xlsx-04.docx -------------------------------------------------------------------------------- /TestFiles/CU013-Chart-Embedded-Xlsx-05.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU013-Chart-Embedded-Xlsx-05.docx -------------------------------------------------------------------------------- /TestFiles/CU014-Chart-Embedded-Xlsx-06.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU014-Chart-Embedded-Xlsx-06.docx -------------------------------------------------------------------------------- /TestFiles/CU015-Chart-Embedded-Xlsx-07.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU015-Chart-Embedded-Xlsx-07.docx -------------------------------------------------------------------------------- /TestFiles/CU016-Chart-Embedded-Xlsx-08.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU016-Chart-Embedded-Xlsx-08.docx -------------------------------------------------------------------------------- /TestFiles/CU017-Chart-Embedded-Xlsx-10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU017-Chart-Embedded-Xlsx-10.docx -------------------------------------------------------------------------------- /TestFiles/CU018-Chart-Cached-Data-41.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU018-Chart-Cached-Data-41.pptx -------------------------------------------------------------------------------- /TestFiles/CU019-Chart-Embedded-Xlsx-41.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CU019-Chart-Embedded-Xlsx-41.pptx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ001-Plain-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ001-Plain-Mod.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ001-Plain.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ001-Plain.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ002-Multi-Paragraphs-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ002-Multi-Paragraphs-Mod.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ002-Multi-Paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ002-Multi-Paragraphs.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ003-Multi-Paragraphs-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ003-Multi-Paragraphs-Mod.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ003-Multi-Paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ003-Multi-Paragraphs.docx -------------------------------------------------------------------------------- /TestFiles/CZ/CZ004-Multi-Paragraphs-in-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/CZ/CZ004-Multi-Paragraphs-in-Cell.docx -------------------------------------------------------------------------------- /TestFiles/DA001-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA001-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA002-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA002-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA003-Select-XPathFindsNoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA003-Select-XPathFindsNoData.docx -------------------------------------------------------------------------------- /TestFiles/DA005-SelectRowData-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA005-SelectRowData-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA006-SelectTestValue-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA006-SelectTestValue-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA007-SelectRepeatingData-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA007-SelectRepeatingData-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA008-TableElementWithNoTable.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA008-TableElementWithNoTable.docx -------------------------------------------------------------------------------- /TestFiles/DA009-InvalidXPath.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA009-InvalidXPath.docx -------------------------------------------------------------------------------- /TestFiles/DA010-InvalidXml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA010-InvalidXml.docx -------------------------------------------------------------------------------- /TestFiles/DA011-SchemaError.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA011-SchemaError.docx -------------------------------------------------------------------------------- /TestFiles/DA012-OtherMarkupTypes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA012-OtherMarkupTypes.docx -------------------------------------------------------------------------------- /TestFiles/DA013-Runs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA013-Runs.docx -------------------------------------------------------------------------------- /TestFiles/DA014-TwoRuns-NoValuesSelected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA014-TwoRuns-NoValuesSelected.docx -------------------------------------------------------------------------------- /TestFiles/DA015-TwoRunsXmlExceptionInFirst.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA015-TwoRunsXmlExceptionInFirst.docx -------------------------------------------------------------------------------- /TestFiles/DA016-TwoRunsSchemaErrorInSecond.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA016-TwoRunsSchemaErrorInSecond.docx -------------------------------------------------------------------------------- /TestFiles/DA017-FiveRuns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA017-FiveRuns.docx -------------------------------------------------------------------------------- /TestFiles/DA018-SmartQuotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA018-SmartQuotes.docx -------------------------------------------------------------------------------- /TestFiles/DA019-RunIsEntireParagraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA019-RunIsEntireParagraph.docx -------------------------------------------------------------------------------- /TestFiles/DA020-TwoRunsAndNoOtherContent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA020-TwoRunsAndNoOtherContent.docx -------------------------------------------------------------------------------- /TestFiles/DA021-NestedRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA021-NestedRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA022-InvalidXPath.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA022-InvalidXPath.docx -------------------------------------------------------------------------------- /TestFiles/DA023-RepeatWOEndRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA023-RepeatWOEndRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA024-TrackedRevisions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA024-TrackedRevisions.docx -------------------------------------------------------------------------------- /TestFiles/DA025-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA025-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA026-InvalidRootXmlElement.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA026-InvalidRootXmlElement.docx -------------------------------------------------------------------------------- /TestFiles/DA027-XPathErrorInPara.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA027-XPathErrorInPara.docx -------------------------------------------------------------------------------- /TestFiles/DA028-NoPrototypeRow.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA028-NoPrototypeRow.docx -------------------------------------------------------------------------------- /TestFiles/DA029-NoDataForCell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA029-NoDataForCell.docx -------------------------------------------------------------------------------- /TestFiles/DA030-TooMuchDataForCell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA030-TooMuchDataForCell.docx -------------------------------------------------------------------------------- /TestFiles/DA031-CellDataInAttributes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA031-CellDataInAttributes.docx -------------------------------------------------------------------------------- /TestFiles/DA032-TooMuchDataForConditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA032-TooMuchDataForConditional.docx -------------------------------------------------------------------------------- /TestFiles/DA033-ConditionalOnAttribute.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA033-ConditionalOnAttribute.docx -------------------------------------------------------------------------------- /TestFiles/DA034-HeaderFooter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA034-HeaderFooter.docx -------------------------------------------------------------------------------- /TestFiles/DA035-SchemaErrorInRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA035-SchemaErrorInRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA036-SchemaErrorInConditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA036-SchemaErrorInConditional.docx -------------------------------------------------------------------------------- /TestFiles/DA100-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA100-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA101-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA101-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA102-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA102-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA201-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA201-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA202-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA202-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA203-Select-XPathFindsNoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA203-Select-XPathFindsNoData.docx -------------------------------------------------------------------------------- /TestFiles/DA205-SelectRowData-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA205-SelectRowData-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA206-SelectTestValue-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA206-SelectTestValue-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA207-SelectRepeatingData-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA207-SelectRepeatingData-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DA208-TableElementWithNoTable.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA208-TableElementWithNoTable.docx -------------------------------------------------------------------------------- /TestFiles/DA209-InvalidXPath.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA209-InvalidXPath.docx -------------------------------------------------------------------------------- /TestFiles/DA210-InvalidXml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA210-InvalidXml.docx -------------------------------------------------------------------------------- /TestFiles/DA211-SchemaError.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA211-SchemaError.docx -------------------------------------------------------------------------------- /TestFiles/DA212-OtherMarkupTypes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA212-OtherMarkupTypes.docx -------------------------------------------------------------------------------- /TestFiles/DA213-Runs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA213-Runs.docx -------------------------------------------------------------------------------- /TestFiles/DA214-TwoRuns-NoValuesSelected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA214-TwoRuns-NoValuesSelected.docx -------------------------------------------------------------------------------- /TestFiles/DA215-TwoRunsXmlExceptionInFirst.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA215-TwoRunsXmlExceptionInFirst.docx -------------------------------------------------------------------------------- /TestFiles/DA216-TwoRunsSchemaErrorInSecond.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA216-TwoRunsSchemaErrorInSecond.docx -------------------------------------------------------------------------------- /TestFiles/DA217-FiveRuns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA217-FiveRuns.docx -------------------------------------------------------------------------------- /TestFiles/DA218-SmartQuotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA218-SmartQuotes.docx -------------------------------------------------------------------------------- /TestFiles/DA219-RunIsEntireParagraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA219-RunIsEntireParagraph.docx -------------------------------------------------------------------------------- /TestFiles/DA220-TwoRunsAndNoOtherContent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA220-TwoRunsAndNoOtherContent.docx -------------------------------------------------------------------------------- /TestFiles/DA221-NestedRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA221-NestedRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA222-InvalidXPath.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA222-InvalidXPath.docx -------------------------------------------------------------------------------- /TestFiles/DA223-RepeatWOEndRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA223-RepeatWOEndRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA224-TrackedRevisions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA224-TrackedRevisions.docx -------------------------------------------------------------------------------- /TestFiles/DA225-TemplateDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA225-TemplateDocument.docx -------------------------------------------------------------------------------- /TestFiles/DA226-InvalidRootXmlElement.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA226-InvalidRootXmlElement.docx -------------------------------------------------------------------------------- /TestFiles/DA227-XPathErrorInPara.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA227-XPathErrorInPara.docx -------------------------------------------------------------------------------- /TestFiles/DA228-NoPrototypeRow.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA228-NoPrototypeRow.docx -------------------------------------------------------------------------------- /TestFiles/DA229-NoDataForCell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA229-NoDataForCell.docx -------------------------------------------------------------------------------- /TestFiles/DA230-TooMuchDataForCell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA230-TooMuchDataForCell.docx -------------------------------------------------------------------------------- /TestFiles/DA231-CellDataInAttributes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA231-CellDataInAttributes.docx -------------------------------------------------------------------------------- /TestFiles/DA232-TooMuchDataForConditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA232-TooMuchDataForConditional.docx -------------------------------------------------------------------------------- /TestFiles/DA233-ConditionalOnAttribute.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA233-ConditionalOnAttribute.docx -------------------------------------------------------------------------------- /TestFiles/DA234-HeaderFooter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA234-HeaderFooter.docx -------------------------------------------------------------------------------- /TestFiles/DA235-Crashes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA235-Crashes.docx -------------------------------------------------------------------------------- /TestFiles/DA236-Page-Num-in-Footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA236-Page-Num-in-Footer.docx -------------------------------------------------------------------------------- /TestFiles/DA237-SchemaErrorInRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA237-SchemaErrorInRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA238-SchemaErrorInConditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA238-SchemaErrorInConditional.docx -------------------------------------------------------------------------------- /TestFiles/DA239-RunLevelCC-Repeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA239-RunLevelCC-Repeat.docx -------------------------------------------------------------------------------- /TestFiles/DA250-ConditionalWithRichXPath.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA250-ConditionalWithRichXPath.docx -------------------------------------------------------------------------------- /TestFiles/DA251-EnhancedTables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA251-EnhancedTables.docx -------------------------------------------------------------------------------- /TestFiles/DA252-Table-With-Sum.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA252-Table-With-Sum.docx -------------------------------------------------------------------------------- /TestFiles/DA253-Table-With-Sum-Run-Level-CC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA253-Table-With-Sum-Run-Level-CC.docx -------------------------------------------------------------------------------- /TestFiles/DA254-Table-With-XPath-Sum.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA254-Table-With-XPath-Sum.docx -------------------------------------------------------------------------------- /TestFiles/DA256-NoInvalidDocOnErrorInRun.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA256-NoInvalidDocOnErrorInRun.docx -------------------------------------------------------------------------------- /TestFiles/DA257-OptionalRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA257-OptionalRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA259-MultiLineContents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA259-MultiLineContents.docx -------------------------------------------------------------------------------- /TestFiles/DA260-RunLevelRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA260-RunLevelRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA261-RunLevelConditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA261-RunLevelConditional.docx -------------------------------------------------------------------------------- /TestFiles/DA262-ConditionalNotMatch.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA262-ConditionalNotMatch.docx -------------------------------------------------------------------------------- /TestFiles/DA263-ConditionalNotMatch.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA263-ConditionalNotMatch.docx -------------------------------------------------------------------------------- /TestFiles/DA264-InvalidRunLevelRepeat.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA264-InvalidRunLevelRepeat.docx -------------------------------------------------------------------------------- /TestFiles/DA266-RunLevelRepeat-NoData.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DA266-RunLevelRepeat-NoData.docx -------------------------------------------------------------------------------- /TestFiles/DB/GlossaryDocuments/BaseDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/GlossaryDocuments/BaseDocument.docx -------------------------------------------------------------------------------- /TestFiles/DB/GlossaryDocuments/FooterContent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/GlossaryDocuments/FooterContent.docx -------------------------------------------------------------------------------- /TestFiles/DB/GlossaryDocuments/HeaderContent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/GlossaryDocuments/HeaderContent.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Dest/Fax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Dest/Fax.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Dest/Letter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Dest/Letter.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Disclaimer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Disclaimer.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Footer.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Letterhead.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Letterhead.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Logo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Logo.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Watermark-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Watermark-1.docx -------------------------------------------------------------------------------- /TestFiles/DB/HeadersFooters/Src/Watermark-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB/HeadersFooters/Src/Watermark-2.docx -------------------------------------------------------------------------------- /TestFiles/DB001-Sections.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB001-Sections.docx -------------------------------------------------------------------------------- /TestFiles/DB0016-DocDefaultStyles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB0016-DocDefaultStyles.docx -------------------------------------------------------------------------------- /TestFiles/DB002-Landscape-Section.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB002-Landscape-Section.docx -------------------------------------------------------------------------------- /TestFiles/DB002-Sections-With-Headers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB002-Sections-With-Headers.docx -------------------------------------------------------------------------------- /TestFiles/DB003-Only-Default-Header.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB003-Only-Default-Header.docx -------------------------------------------------------------------------------- /TestFiles/DB004-No-Headers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB004-No-Headers.docx -------------------------------------------------------------------------------- /TestFiles/DB005-Headers-With-Images.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB005-Headers-With-Images.docx -------------------------------------------------------------------------------- /TestFiles/DB006-Source1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB006-Source1.docx -------------------------------------------------------------------------------- /TestFiles/DB006-Source2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB006-Source2.docx -------------------------------------------------------------------------------- /TestFiles/DB006-Source3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB006-Source3.docx -------------------------------------------------------------------------------- /TestFiles/DB007-Abstract.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB007-Abstract.docx -------------------------------------------------------------------------------- /TestFiles/DB007-AuthorBiography.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB007-AuthorBiography.docx -------------------------------------------------------------------------------- /TestFiles/DB007-Notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB007-Notes.docx -------------------------------------------------------------------------------- /TestFiles/DB007-Spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB007-Spec.docx -------------------------------------------------------------------------------- /TestFiles/DB007-WhitePaper.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB007-WhitePaper.docx -------------------------------------------------------------------------------- /TestFiles/DB010-FrontMatter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB010-FrontMatter.docx -------------------------------------------------------------------------------- /TestFiles/DB010-Insert-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB010-Insert-01.docx -------------------------------------------------------------------------------- /TestFiles/DB010-Insert-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB010-Insert-02.docx -------------------------------------------------------------------------------- /TestFiles/DB010-Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB010-Template.docx -------------------------------------------------------------------------------- /TestFiles/DB011-Body-With-Shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB011-Body-With-Shape.docx -------------------------------------------------------------------------------- /TestFiles/DB011-Header-With-Shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB011-Header-With-Shape.docx -------------------------------------------------------------------------------- /TestFiles/DB013a-Green-Heading1-Danish.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB013a-Green-Heading1-Danish.docx -------------------------------------------------------------------------------- /TestFiles/DB013a-Red-Heading1-English.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB013a-Red-Heading1-English.docx -------------------------------------------------------------------------------- /TestFiles/DB013b-Blue-List-English.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB013b-Blue-List-English.docx -------------------------------------------------------------------------------- /TestFiles/DB013b-Orange-List-Danish.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB013b-Orange-List-Danish.docx -------------------------------------------------------------------------------- /TestFiles/DB014-WebExtensions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB014-WebExtensions.docx -------------------------------------------------------------------------------- /TestFiles/DB015-LatentStyles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/DB015-LatentStyles.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/001-DeletedRun.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/001-DeletedRun.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/003-DeletedFieldCode.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/003-DeletedFieldCode.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/006-DeletedTableRow.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/006-DeletedTableRow.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/007-InsertedTableRow.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/007-InsertedTableRow.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/010-InsertedRun.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/010-InsertedRun.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/011-InsertedMathChar.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/011-InsertedMathChar.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/012-DeletedMathChar.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/012-DeletedMathChar.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/013-DeletedParagraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/013-DeletedParagraph.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/014-MovedParagraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/014-MovedParagraph.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/017-NumberingChange.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/017-NumberingChange.docx -------------------------------------------------------------------------------- /TestFiles/FA/RevTracking/021-TableGridChange.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/FA/RevTracking/021-TableGridChange.docx -------------------------------------------------------------------------------- /TestFiles/HC001-5DayTourPlanTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC001-5DayTourPlanTemplate.docx -------------------------------------------------------------------------------- /TestFiles/HC002-Hebrew-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC002-Hebrew-01.docx -------------------------------------------------------------------------------- /TestFiles/HC003-Hebrew-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC003-Hebrew-02.docx -------------------------------------------------------------------------------- /TestFiles/HC004-ResumeTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC004-ResumeTemplate.docx -------------------------------------------------------------------------------- /TestFiles/HC005-TaskPlanTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC005-TaskPlanTemplate.docx -------------------------------------------------------------------------------- /TestFiles/HC006-Test-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC006-Test-01.docx -------------------------------------------------------------------------------- /TestFiles/HC007-Test-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC007-Test-02.docx -------------------------------------------------------------------------------- /TestFiles/HC008-Test-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC008-Test-03.docx -------------------------------------------------------------------------------- /TestFiles/HC009-Test-04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC009-Test-04.docx -------------------------------------------------------------------------------- /TestFiles/HC010-Test-05.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC010-Test-05.docx -------------------------------------------------------------------------------- /TestFiles/HC011-Test-06.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC011-Test-06.docx -------------------------------------------------------------------------------- /TestFiles/HC012-Test-07.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC012-Test-07.docx -------------------------------------------------------------------------------- /TestFiles/HC013-Test-08.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC013-Test-08.docx -------------------------------------------------------------------------------- /TestFiles/HC014-RTL-Table-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC014-RTL-Table-01.docx -------------------------------------------------------------------------------- /TestFiles/HC015-Vertical-Spacing-atLeast.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC015-Vertical-Spacing-atLeast.docx -------------------------------------------------------------------------------- /TestFiles/HC016-Horizontal-Spacing-firstLine.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC016-Horizontal-Spacing-firstLine.docx -------------------------------------------------------------------------------- /TestFiles/HC017-Vertical-Alignment-Cell-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC017-Vertical-Alignment-Cell-01.docx -------------------------------------------------------------------------------- /TestFiles/HC018-Vertical-Alignment-Para-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC018-Vertical-Alignment-Para-01.docx -------------------------------------------------------------------------------- /TestFiles/HC019-Hidden-Run.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC019-Hidden-Run.docx -------------------------------------------------------------------------------- /TestFiles/HC020-Small-Caps.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC020-Small-Caps.docx -------------------------------------------------------------------------------- /TestFiles/HC021-Symbols.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC021-Symbols.docx -------------------------------------------------------------------------------- /TestFiles/HC022-Table-Of-Contents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC022-Table-Of-Contents.docx -------------------------------------------------------------------------------- /TestFiles/HC023-Hyperlink.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC023-Hyperlink.docx -------------------------------------------------------------------------------- /TestFiles/HC024-Tabs-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC024-Tabs-01.docx -------------------------------------------------------------------------------- /TestFiles/HC025-Tabs-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC025-Tabs-02.docx -------------------------------------------------------------------------------- /TestFiles/HC026-Tabs-03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC026-Tabs-03.docx -------------------------------------------------------------------------------- /TestFiles/HC027-Tabs-04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC027-Tabs-04.docx -------------------------------------------------------------------------------- /TestFiles/HC028-No-Break-Hyphen.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC028-No-Break-Hyphen.docx -------------------------------------------------------------------------------- /TestFiles/HC029-Table-Merged-Cells.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC029-Table-Merged-Cells.docx -------------------------------------------------------------------------------- /TestFiles/HC030-Content-Controls.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC030-Content-Controls.docx -------------------------------------------------------------------------------- /TestFiles/HC031-Complicated-Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC031-Complicated-Document.docx -------------------------------------------------------------------------------- /TestFiles/HC032-Named-Color.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC032-Named-Color.docx -------------------------------------------------------------------------------- /TestFiles/HC033-Run-With-Border.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC033-Run-With-Border.docx -------------------------------------------------------------------------------- /TestFiles/HC034-Run-With-Position.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC034-Run-With-Position.docx -------------------------------------------------------------------------------- /TestFiles/HC035-Strike-Through.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC035-Strike-Through.docx -------------------------------------------------------------------------------- /TestFiles/HC036-Super-Script.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC036-Super-Script.docx -------------------------------------------------------------------------------- /TestFiles/HC037-Sub-Script.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC037-Sub-Script.docx -------------------------------------------------------------------------------- /TestFiles/HC038-Conflicting-Border-Weight.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC038-Conflicting-Border-Weight.docx -------------------------------------------------------------------------------- /TestFiles/HC039-Bold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC039-Bold.docx -------------------------------------------------------------------------------- /TestFiles/HC040-Hyperlink-Fieldcode-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC040-Hyperlink-Fieldcode-01.docx -------------------------------------------------------------------------------- /TestFiles/HC041-Hyperlink-Fieldcode-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC041-Hyperlink-Fieldcode-02.docx -------------------------------------------------------------------------------- /TestFiles/HC042-Image-Png.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC042-Image-Png.docx -------------------------------------------------------------------------------- /TestFiles/HC043-Chart.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC043-Chart.docx -------------------------------------------------------------------------------- /TestFiles/HC044-Embedded-Workbook.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC044-Embedded-Workbook.docx -------------------------------------------------------------------------------- /TestFiles/HC045-Italic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC045-Italic.docx -------------------------------------------------------------------------------- /TestFiles/HC046-BoldAndItalic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC046-BoldAndItalic.docx -------------------------------------------------------------------------------- /TestFiles/HC047-No-Section.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC047-No-Section.docx -------------------------------------------------------------------------------- /TestFiles/HC048-Excerpt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC048-Excerpt.docx -------------------------------------------------------------------------------- /TestFiles/HC049-Borders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC049-Borders.docx -------------------------------------------------------------------------------- /TestFiles/HC050-Shaded-Text-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC050-Shaded-Text-01.docx -------------------------------------------------------------------------------- /TestFiles/HC051-Shaded-Text-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC051-Shaded-Text-02.docx -------------------------------------------------------------------------------- /TestFiles/HC052-SmartArt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC052-SmartArt.docx -------------------------------------------------------------------------------- /TestFiles/HC060-Image-with-Hyperlink.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC060-Image-with-Hyperlink.docx -------------------------------------------------------------------------------- /TestFiles/HC061-Hyperlink-in-Field.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HC061-Hyperlink-in-Field.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table01.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table02.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table03.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table04.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table05.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table05.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table06.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table06.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table07.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table07.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table08.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table08.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table09.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table09.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table10.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table11.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table11.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table12.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table12.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table13.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table13.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table14.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table14.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table15.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table15.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table16.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table16.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table17.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table17.docx -------------------------------------------------------------------------------- /TestFiles/HW002-Table18.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW002-Table18.docx -------------------------------------------------------------------------------- /TestFiles/HW010-SpanWithSingleSpace.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-SpanWithSingleSpace.docx -------------------------------------------------------------------------------- /TestFiles/HW010-Symbols01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-Symbols01.docx -------------------------------------------------------------------------------- /TestFiles/HW010-Symbols02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-Symbols02.docx -------------------------------------------------------------------------------- /TestFiles/HW010-Tab01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-Tab01.docx -------------------------------------------------------------------------------- /TestFiles/HW010-TableWithEmptyRows.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-TableWithEmptyRows.docx -------------------------------------------------------------------------------- /TestFiles/HW010-TableWithImage.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-TableWithImage.docx -------------------------------------------------------------------------------- /TestFiles/HW010-TableWithThreeEmptyRows.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/HW010-TableWithThreeEmptyRows.docx -------------------------------------------------------------------------------- /TestFiles/LIR001-en-US-ordinal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR001-en-US-ordinal.docx -------------------------------------------------------------------------------- /TestFiles/LIR002-en-US-ordinalText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR002-en-US-ordinalText.docx -------------------------------------------------------------------------------- /TestFiles/LIR003-en-US-upperLetter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR003-en-US-upperLetter.docx -------------------------------------------------------------------------------- /TestFiles/LIR004-en-US-upperRoman.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR004-en-US-upperRoman.docx -------------------------------------------------------------------------------- /TestFiles/LIR005-fr-FR-cardinalText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR005-fr-FR-cardinalText.docx -------------------------------------------------------------------------------- /TestFiles/LIR006-fr-FR-ordinal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR006-fr-FR-ordinal.docx -------------------------------------------------------------------------------- /TestFiles/LIR006-fr-FR-ordinalText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR006-fr-FR-ordinalText.docx -------------------------------------------------------------------------------- /TestFiles/LIR007-ru-RU-ordinalText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR007-ru-RU-ordinalText.docx -------------------------------------------------------------------------------- /TestFiles/LIR009-zh-CN-chineseCounting.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR009-zh-CN-chineseCounting.docx -------------------------------------------------------------------------------- /TestFiles/LIR010-zh-CN-ideographTraditional.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR010-zh-CN-ideographTraditional.docx -------------------------------------------------------------------------------- /TestFiles/LIR011-en-US-00001.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR011-en-US-00001.docx -------------------------------------------------------------------------------- /TestFiles/LIR012-en-US-0001.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR012-en-US-0001.docx -------------------------------------------------------------------------------- /TestFiles/LIR013-en-US-001.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR013-en-US-001.docx -------------------------------------------------------------------------------- /TestFiles/LIR014-en-US-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR014-en-US-01.docx -------------------------------------------------------------------------------- /TestFiles/LIR015-en-US-cardinalText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR015-en-US-cardinalText.docx -------------------------------------------------------------------------------- /TestFiles/LIR016-en-US-decimal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR016-en-US-decimal.docx -------------------------------------------------------------------------------- /TestFiles/LIR017-en-US-decimalEnclosedCircle.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR017-en-US-decimalEnclosedCircle.docx -------------------------------------------------------------------------------- /TestFiles/LIR018-en-US-decimalZero.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR018-en-US-decimalZero.docx -------------------------------------------------------------------------------- /TestFiles/LIR019-en-US-lowerLetter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR019-en-US-lowerLetter.docx -------------------------------------------------------------------------------- /TestFiles/LIR020-en-US-lowerRoman.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/LIR020-en-US-lowerRoman.docx -------------------------------------------------------------------------------- /TestFiles/PB001-Input1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/PB001-Input1.pptx -------------------------------------------------------------------------------- /TestFiles/PB001-Input2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/PB001-Input2.pptx -------------------------------------------------------------------------------- /TestFiles/PB001-Input3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/PB001-Input3.pptx -------------------------------------------------------------------------------- /TestFiles/PP006-Videos.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/PP006-Videos.pptx -------------------------------------------------------------------------------- /TestFiles/PU/PU001-Test001.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/PU/PU001-Test001.mht -------------------------------------------------------------------------------- /TestFiles/Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/Presentation.pptx -------------------------------------------------------------------------------- /TestFiles/RA001-Tracked-Revisions-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RA001-Tracked-Revisions-01.docx -------------------------------------------------------------------------------- /TestFiles/RA001-Tracked-Revisions-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RA001-Tracked-Revisions-02.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC001-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC001-After1.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC001-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC001-After2.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC001-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC001-Before.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC002-Image-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC002-Image-After1.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC002-Image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC002-Image.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC003-Multi-Paras-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC003-Multi-Paras-After.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC003-Multi-Paras.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC003-Multi-Paras.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC004-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC004-After1.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC004-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC004-After2.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC004-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC004-Before.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC005-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC005-After1.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC005-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC005-Before.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC006-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC006-After1.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC006-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC006-Before.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC007-Endnotes-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC007-Endnotes-After.docx -------------------------------------------------------------------------------- /TestFiles/RC/RC007-Endnotes-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RC/RC007-Endnotes-Before.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP001-Tracked-Revisions-01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP001-Tracked-Revisions-01.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP001-Tracked-Revisions-02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP001-Tracked-Revisions-02.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP002-Deleted-Text-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP002-Deleted-Text-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP002-Deleted-Text-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP002-Deleted-Text-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP002-Deleted-Text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP002-Deleted-Text.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP003-Inserted-Text-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP003-Inserted-Text-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP003-Inserted-Text-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP003-Inserted-Text-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP003-Inserted-Text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP003-Inserted-Text.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP004-Deleted-Text-in-CC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP004-Deleted-Text-in-CC.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP005-Deleted-Paragraph-Mark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP005-Deleted-Paragraph-Mark.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP006-Inserted-Paragraph-Mark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP006-Inserted-Paragraph-Mark.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP007-Multiple-Deleted-Para-Mark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP007-Multiple-Deleted-Para-Mark.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP009-Deleted-Table-Row-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP009-Deleted-Table-Row-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP009-Deleted-Table-Row-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP009-Deleted-Table-Row-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP009-Deleted-Table-Row.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP009-Deleted-Table-Row.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP010-Inserted-Table-Row.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP010-Inserted-Table-Row.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP011-Multiple-Deleted-Rows.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP011-Multiple-Deleted-Rows.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP012-Multiple-Inserted-Rows.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP012-Multiple-Inserted-Rows.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP013-Deleted-Math-Control-Char.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP013-Deleted-Math-Control-Char.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP014-Inserted-Math-Control-Char.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP014-Inserted-Math-Control-Char.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP015-MoveFrom-MoveTo-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP015-MoveFrom-MoveTo-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP015-MoveFrom-MoveTo-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP015-MoveFrom-MoveTo-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP015-MoveFrom-MoveTo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP015-MoveFrom-MoveTo.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP016-Deleted-CC-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP016-Deleted-CC-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP016-Deleted-CC-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP016-Deleted-CC-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP016-Deleted-CC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP016-Deleted-CC.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP017-Inserted-CC-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP017-Inserted-CC-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP017-Inserted-CC-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP017-Inserted-CC-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP017-Inserted-CC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP017-Inserted-CC.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP018-MoveFrom-MoveTo-CC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP018-MoveFrom-MoveTo-CC.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP019-Deleted-Field-Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP019-Deleted-Field-Code.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP020-Inserted-Field-Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP020-Inserted-Field-Code.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP022-NumberingChange-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP022-NumberingChange-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP022-NumberingChange-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP022-NumberingChange-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP022-NumberingChange.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP022-NumberingChange.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP023-NumberingChange-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP023-NumberingChange-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP023-NumberingChange-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP023-NumberingChange-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP023-NumberingChange.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP023-NumberingChange.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP024-ParagraphMark-rPr-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP024-ParagraphMark-rPr-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP025-Paragraph-Props-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP025-Paragraph-Props-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP026-NumberingChange-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP026-NumberingChange-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP026-NumberingChange-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP026-NumberingChange-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP026-NumberingChange.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP026-NumberingChange.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP027-Change-Section-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP027-Change-Section-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP027-Change-Section-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP027-Change-Section-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP027-Change-Section.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP027-Change-Section.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP028-Table-Grid-Change-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP028-Table-Grid-Change-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP028-Table-Grid-Change-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP028-Table-Grid-Change-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP028-Table-Grid-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP028-Table-Grid-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP029-Table-Row-Props-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP029-Table-Row-Props-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP030-Table-Row-Props-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP030-Table-Row-Props-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP031-Table-Prop-Change-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP031-Table-Prop-Change-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP031-Table-Prop-Change-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP031-Table-Prop-Change-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP031-Table-Prop-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP031-Table-Prop-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP032-Table-Prop-Change-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP032-Table-Prop-Change-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP032-Table-Prop-Change-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP032-Table-Prop-Change-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP032-Table-Prop-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP032-Table-Prop-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP033-Table-Prop-Ex-Change.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP033-Table-Prop-Ex-Change.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP034-Deleted-Cells-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP034-Deleted-Cells-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP034-Deleted-Cells-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP034-Deleted-Cells-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP034-Deleted-Cells.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP034-Deleted-Cells.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP035-Inserted-Cells-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP035-Inserted-Cells-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP035-Inserted-Cells-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP035-Inserted-Cells-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP035-Inserted-Cells.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP035-Inserted-Cells.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP036-Vert-Merged-Cells-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP036-Vert-Merged-Cells-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP036-Vert-Merged-Cells-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP036-Vert-Merged-Cells-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP036-Vert-Merged-Cells.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP036-Vert-Merged-Cells.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP037-Changed-Style-Para-Props.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP037-Changed-Style-Para-Props.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP038-Inserted-Paras-at-End.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP038-Inserted-Paras-at-End.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP039-Inserted-Paras-at-End.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP039-Inserted-Paras-at-End.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP040-Deleted-Paras-at-End.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP040-Deleted-Paras-at-End.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP042-Deleted-Para-Mark-at-End.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP042-Deleted-Para-Mark-at-End.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP043-MERGEFORMAT-Field-Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP043-MERGEFORMAT-Field-Code.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP044-MERGEFORMAT-Field-Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP044-MERGEFORMAT-Field-Code.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP046-Consecutive-Deleted-Ranges.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP046-Consecutive-Deleted-Ranges.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP048-Deleted-Inserted-Para-Mark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP048-Deleted-Inserted-Para-Mark.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP049-Deleted-Para-Before-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP049-Deleted-Para-Before-Table.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP050-Deleted-Footnote-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP050-Deleted-Footnote-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP050-Deleted-Footnote-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP050-Deleted-Footnote-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP050-Deleted-Footnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP050-Deleted-Footnote.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP051-Arabic-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP051-Arabic-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP051-Arabic-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP051-Arabic-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP051-Arabic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP051-Arabic.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP052-Deleted-Para-Mark-Accepted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP052-Deleted-Para-Mark-Accepted.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP052-Deleted-Para-Mark-Rejected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP052-Deleted-Para-Mark-Rejected.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP052-Deleted-Para-Mark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP052-Deleted-Para-Mark.docx -------------------------------------------------------------------------------- /TestFiles/RP/RP999-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/RP/RP999-Table.docx -------------------------------------------------------------------------------- /TestFiles/SH001-Table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH001-Table.xlsx -------------------------------------------------------------------------------- /TestFiles/SH002-TwoTablesTwoSheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH002-TwoTablesTwoSheets.xlsx -------------------------------------------------------------------------------- /TestFiles/SH003-TableWithDateInFirstColumn.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH003-TableWithDateInFirstColumn.xlsx -------------------------------------------------------------------------------- /TestFiles/SH004-TableAtOffsetLocation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH004-TableAtOffsetLocation.xlsx -------------------------------------------------------------------------------- /TestFiles/SH005-Table-With-SharedStrings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH005-Table-With-SharedStrings.xlsx -------------------------------------------------------------------------------- /TestFiles/SH006-Table-No-SharedStrings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH006-Table-No-SharedStrings.xlsx -------------------------------------------------------------------------------- /TestFiles/SH007-One-Cell-Table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH007-One-Cell-Table.xlsx -------------------------------------------------------------------------------- /TestFiles/SH008-Table-With-Tall-Row.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH008-Table-With-Tall-Row.xlsx -------------------------------------------------------------------------------- /TestFiles/SH009-Table-With-Wide-Column.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH009-Table-With-Wide-Column.xlsx -------------------------------------------------------------------------------- /TestFiles/SH101-SimpleFormats.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH101-SimpleFormats.xlsx -------------------------------------------------------------------------------- /TestFiles/SH102-9-x-9.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH102-9-x-9.xlsx -------------------------------------------------------------------------------- /TestFiles/SH103-No-SharedString.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH103-No-SharedString.xlsx -------------------------------------------------------------------------------- /TestFiles/SH104-With-SharedString.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH104-With-SharedString.xlsx -------------------------------------------------------------------------------- /TestFiles/SH105-No-SharedString.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH105-No-SharedString.xlsx -------------------------------------------------------------------------------- /TestFiles/SH106-9-x-9-Formatted.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH106-9-x-9-Formatted.xlsx -------------------------------------------------------------------------------- /TestFiles/SH107-9-x-9-Formatted-Table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH107-9-x-9-Formatted-Table.xlsx -------------------------------------------------------------------------------- /TestFiles/SH108-SimpleFormattedCell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH108-SimpleFormattedCell.xlsx -------------------------------------------------------------------------------- /TestFiles/SH109-CellWithBorder.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH109-CellWithBorder.xlsx -------------------------------------------------------------------------------- /TestFiles/SH110-CellWithMasterStyle.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH110-CellWithMasterStyle.xlsx -------------------------------------------------------------------------------- /TestFiles/SH111-ChangedDefaultColumnWidth.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH111-ChangedDefaultColumnWidth.xlsx -------------------------------------------------------------------------------- /TestFiles/SH112-NotVertMergedCell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH112-NotVertMergedCell.xlsx -------------------------------------------------------------------------------- /TestFiles/SH113-VertMergedCell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH113-VertMergedCell.xlsx -------------------------------------------------------------------------------- /TestFiles/SH114-Centered-Cell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH114-Centered-Cell.xlsx -------------------------------------------------------------------------------- /TestFiles/SH115-DigitsToRight.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH115-DigitsToRight.xlsx -------------------------------------------------------------------------------- /TestFiles/SH116-FmtNumId-1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH116-FmtNumId-1.xlsx -------------------------------------------------------------------------------- /TestFiles/SH117-FmtNumId-2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH117-FmtNumId-2.xlsx -------------------------------------------------------------------------------- /TestFiles/SH118-FmtNumId-3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH118-FmtNumId-3.xlsx -------------------------------------------------------------------------------- /TestFiles/SH119-FmtNumId-4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH119-FmtNumId-4.xlsx -------------------------------------------------------------------------------- /TestFiles/SH120-FmtNumId-9.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH120-FmtNumId-9.xlsx -------------------------------------------------------------------------------- /TestFiles/SH121-FmtNumId-11.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH121-FmtNumId-11.xlsx -------------------------------------------------------------------------------- /TestFiles/SH122-FmtNumId-12.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH122-FmtNumId-12.xlsx -------------------------------------------------------------------------------- /TestFiles/SH123-FmtNumId-14.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH123-FmtNumId-14.xlsx -------------------------------------------------------------------------------- /TestFiles/SH124-FmtNumId-15.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH124-FmtNumId-15.xlsx -------------------------------------------------------------------------------- /TestFiles/SH125-FmtNumId-16.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH125-FmtNumId-16.xlsx -------------------------------------------------------------------------------- /TestFiles/SH126-FmtNumId-17.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH126-FmtNumId-17.xlsx -------------------------------------------------------------------------------- /TestFiles/SH127-FmtNumId-18.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH127-FmtNumId-18.xlsx -------------------------------------------------------------------------------- /TestFiles/SH128-FmtNumId-19.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH128-FmtNumId-19.xlsx -------------------------------------------------------------------------------- /TestFiles/SH129-FmtNumId-20.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH129-FmtNumId-20.xlsx -------------------------------------------------------------------------------- /TestFiles/SH130-FmtNumId-21.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH130-FmtNumId-21.xlsx -------------------------------------------------------------------------------- /TestFiles/SH131-FmtNumId-22.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH131-FmtNumId-22.xlsx -------------------------------------------------------------------------------- /TestFiles/SH132-FmtNumId-46.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH132-FmtNumId-46.xlsx -------------------------------------------------------------------------------- /TestFiles/SH133-FmtNumId-47.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH133-FmtNumId-47.xlsx -------------------------------------------------------------------------------- /TestFiles/SH151-Custom-Cell-Format-Currency.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH151-Custom-Cell-Format-Currency.xlsx -------------------------------------------------------------------------------- /TestFiles/SH152-Custom-Cell-Format.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH152-Custom-Cell-Format.xlsx -------------------------------------------------------------------------------- /TestFiles/SH201-Cell-C1-Without-R-Attr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH201-Cell-C1-Without-R-Attr.xlsx -------------------------------------------------------------------------------- /TestFiles/SH202-Cell-C1-D1-Without-R-Attr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH202-Cell-C1-D1-Without-R-Attr.xlsx -------------------------------------------------------------------------------- /TestFiles/SH203-Cell-C1-D1-E1-Without-R-Attr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH203-Cell-C1-D1-E1-Without-R-Attr.xlsx -------------------------------------------------------------------------------- /TestFiles/SH204-Cell-A1-B1-C1-Without-R-Attr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/SH204-Cell-A1-B1-C1-Without-R-Attr.xlsx -------------------------------------------------------------------------------- /TestFiles/Spreadsheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/Spreadsheet.xlsx -------------------------------------------------------------------------------- /TestFiles/T0011.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 |

Paragraph 1

8 |
9 |

Paragraph 2

10 | 11 | -------------------------------------------------------------------------------- /TestFiles/T0020.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Html Heading

5 |

This is an html document in a string literal.

6 | 7 | -------------------------------------------------------------------------------- /TestFiles/T0622.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 |

fzz

9 | 10 | -------------------------------------------------------------------------------- /TestFiles/T0651.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 |

fzz

9 | 10 | -------------------------------------------------------------------------------- /TestFiles/T0921_files/img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/T0921_files/img.PNG -------------------------------------------------------------------------------- /TestFiles/T0922_files/img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/T0922_files/img.PNG -------------------------------------------------------------------------------- /TestFiles/T0924_files/img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/T0924_files/img.PNG -------------------------------------------------------------------------------- /TestFiles/T0925_files/img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/T0925_files/img.PNG -------------------------------------------------------------------------------- /TestFiles/T0936_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/T0936_files/image001.png -------------------------------------------------------------------------------- /TestFiles/WC/WC001-Digits-Deleted-Paragraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC001-Digits-Deleted-Paragraph.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC001-Digits-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC001-Digits-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC001-Digits.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC001-Digits.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-DeleteAtBeginning.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-DeleteAtBeginning.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-DeleteAtEnd.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-DeleteAtEnd.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-DeleteInMiddle.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-DeleteInMiddle.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-DiffAtBeginning.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-DiffAtBeginning.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-DiffInMiddle.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-DiffInMiddle.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-InsertAtBeginning.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-InsertAtBeginning.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-InsertAtEnd.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-InsertAtEnd.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-InsertInMiddle.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-InsertInMiddle.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC002-Unmodified.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC002-Unmodified.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC004-Large-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC004-Large-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC004-Large.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC004-Large.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC006-Table-Delete-Row.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC006-Table-Delete-Row.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC006-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC006-Table.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC007-Longest-At-End.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC007-Longest-At-End.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC007-Moved-into-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC007-Moved-into-Table.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC007-Unmodified.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC007-Unmodified.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC009-Table-Cell-1-1-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC009-Table-Cell-1-1-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC009-Table-Unmodified.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC009-Table-Unmodified.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC010-Para-Before-Table-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC010-Para-Before-Table-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC011-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC011-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC011-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC011-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC012-Math-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC012-Math-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC012-Math-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC012-Math-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC013-Image-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC013-Image-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC013-Image-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC013-Image-After2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC013-Image-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC013-Image-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC013-Image-Before2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC013-Image-Before2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC014-SmartArt-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC014-SmartArt-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC014-SmartArt-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC014-SmartArt-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC014-SmartArt-With-Image-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC014-SmartArt-With-Image-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC014-SmartArt-With-Image-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC014-SmartArt-With-Image-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC015-Three-Paragraphs-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC015-Three-Paragraphs-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC015-Three-Paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC015-Three-Paragraphs.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC016-Para-Image-Para.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC016-Para-Image-Para.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC017-Image-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC017-Image-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC017-Image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC017-Image.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC018-Field-Simple-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC018-Field-Simple-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC018-Field-Simple-After-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC018-Field-Simple-After-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC018-Field-Simple-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC018-Field-Simple-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC019-Hyperlink-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC019-Hyperlink-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC019-Hyperlink-After-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC019-Hyperlink-After-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC019-Hyperlink-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC019-Hyperlink-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC020-FootNote-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC020-FootNote-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC020-FootNote-After-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC020-FootNote-After-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC020-FootNote-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC020-FootNote-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC021-Math-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC021-Math-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC021-Math-After-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC021-Math-After-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC021-Math-Before-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC021-Math-Before-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC021-Math-Before-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC021-Math-Before-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC022-Image-Math-Para-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC022-Image-Math-Para-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC022-Image-Math-Para-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC022-Image-Math-Para-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC023-Table-4-Row-Image-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC023-Table-4-Row-Image-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC024-Table-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC024-Table-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC024-Table-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC024-Table-After2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC024-Table-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC024-Table-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC025-Simple-Table-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC025-Simple-Table-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC025-Simple-Table-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC025-Simple-Table-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC026-Long-Table-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC026-Long-Table-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC026-Long-Table-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC026-Long-Table-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC027-Twenty-Paras-After-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC027-Twenty-Paras-After-1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC027-Twenty-Paras-After-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC027-Twenty-Paras-After-2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC027-Twenty-Paras-After-3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC027-Twenty-Paras-After-3.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC027-Twenty-Paras-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC027-Twenty-Paras-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC030-Image-Math-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC030-Image-Math-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC030-Image-Math-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC030-Image-Math-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC031-Two-Maths-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC031-Two-Maths-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC031-Two-Maths-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC031-Two-Maths-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC032-Para-with-Para-Props-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC032-Para-with-Para-Props-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC032-Para-with-Para-Props.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC032-Para-with-Para-Props.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC033-Merged-Cells-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC033-Merged-Cells-After1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC033-Merged-Cells-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC033-Merged-Cells-After2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC033-Merged-Cells-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC033-Merged-Cells-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Endnotes-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Endnotes-After1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Endnotes-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Endnotes-After2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Endnotes-After3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Endnotes-After3.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Endnotes-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Endnotes-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Footnotes-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Footnotes-After1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Footnotes-After2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Footnotes-After2.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Footnotes-After3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Footnotes-After3.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC034-Footnotes-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC034-Footnotes-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC035-Endnote-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC035-Endnote-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC035-Endnote-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC035-Endnote-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC035-Footnote-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC035-Footnote-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC035-Footnote-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC035-Footnote-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC036-Endnote-With-Table-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC036-Endnote-With-Table-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC036-Endnote-With-Table-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC036-Endnote-With-Table-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC036-Footnote-With-Table-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC036-Footnote-With-Table-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC036-Footnote-With-Table-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC036-Footnote-With-Table-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC037-Textbox-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC037-Textbox-After1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC037-Textbox-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC037-Textbox-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC038-Document-With-BR-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC038-Document-With-BR-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC038-Document-With-BR-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC038-Document-With-BR-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC039-Break-In-Row-After1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC039-Break-In-Row-After1.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC039-Break-In-Row.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC039-Break-In-Row.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC040-Case-After.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC040-Case-After.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC040-Case-Before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC040-Case-Before.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC041-Table-5-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC041-Table-5-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC041-Table-5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC041-Table-5.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC042-Table-5-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC042-Table-5-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC042-Table-5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC042-Table-5.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC043-Nested-Table-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC043-Nested-Table-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC043-Nested-Table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC043-Nested-Table.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC044-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC044-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC044-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC044-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC045-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC045-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC045-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC045-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC046-Two-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC046-Two-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC046-Two-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC046-Two-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC047-Two-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC047-Two-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC047-Two-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC047-Two-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC048-Text-Box-in-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC048-Text-Box-in-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC048-Text-Box-in-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC048-Text-Box-in-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC049-Text-Box-in-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC049-Text-Box-in-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC049-Text-Box-in-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC049-Text-Box-in-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC050-Table-in-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC050-Table-in-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC050-Table-in-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC050-Table-in-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC051-Table-in-Text-Box-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC051-Table-in-Text-Box-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC051-Table-in-Text-Box.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC051-Table-in-Text-Box.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC052-SmartArt-Same-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC052-SmartArt-Same-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC052-SmartArt-Same.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC052-SmartArt-Same.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC053-Text-in-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC053-Text-in-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC053-Text-in-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC053-Text-in-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC054-Text-in-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC054-Text-in-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC054-Text-in-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC054-Text-in-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC055-French-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC055-French-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC055-French.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC055-French.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC056-French-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC056-French-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC056-French.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC056-French.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC057-Table-Merged-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC057-Table-Merged-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC057-Table-Merged-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC057-Table-Merged-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC058-Table-Merged-Cell-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC058-Table-Merged-Cell-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC058-Table-Merged-Cell.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC058-Table-Merged-Cell.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC059-Footnote-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC059-Footnote-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC059-Footnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC059-Footnote.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC060-Endnote-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC060-Endnote-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC060-Endnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC060-Endnote.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC061-Style-Added-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC061-Style-Added-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC061-Style-Added.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC061-Style-Added.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC062-New-Char-Style-Added-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC062-New-Char-Style-Added-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC062-New-Char-Style-Added.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC062-New-Char-Style-Added.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC063-Footnote-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC063-Footnote-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC063-Footnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC063-Footnote.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC064-Footnote-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC064-Footnote-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC064-Footnote.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC064-Footnote.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC065-Textbox-Deleted.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC065-Textbox-Deleted.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC065-Textbox-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC065-Textbox-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC065-Textbox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC065-Textbox.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC066-Textbox-Before-Ins-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC066-Textbox-Before-Ins-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC066-Textbox-Before-Ins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC066-Textbox-Before-Ins.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC067-Textbox-Image-Mod.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC067-Textbox-Image-Mod.docx -------------------------------------------------------------------------------- /TestFiles/WC/WC067-Textbox-Image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/WC/WC067-Textbox-Image.docx -------------------------------------------------------------------------------- /TestFiles/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/img.png -------------------------------------------------------------------------------- /TestFiles/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXmlDev/Open-Xml-PowerTools/536ca1fb4bcdce1f4c920658bd66807b970393d7/TestFiles/img2.png --------------------------------------------------------------------------------