├── .gitignore ├── Directory.Build.props ├── DotNetCore.NPOI.sln ├── LICENSE.txt ├── NOTICE.TXT ├── README.md ├── README.zh-CN.md ├── appveyor.yml ├── build.cake ├── build.ps1 ├── build ├── index.cake ├── util.cake ├── version.cake └── version.props ├── samples └── Npoi.Samples.CreateNewSpreadsheet │ ├── Issue32.cs │ ├── Issue33.cs │ ├── Npoi.Samples.CreateNewSpreadsheet.csproj │ └── Program.cs ├── src ├── NPOI.OOXML │ ├── NPOI.OOXML.csproj │ ├── POIXMLDocument.cs │ ├── POIXMLDocumentPart.cs │ ├── POIXMLFactory.cs │ ├── POIXMLProperties.cs │ ├── POIXMLPropertiesTextExtractor.cs │ ├── POIXMLRelation.cs │ ├── POIXMLTextExtractor.cs │ ├── POIXmlException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SS │ │ ├── Converter │ │ │ ├── ExcelToHtmlConverter.cs │ │ │ └── ExcelToHtmlUtils.cs │ │ └── UserModel │ │ │ ├── IndexedColors.cs │ │ │ └── WorkbookFactory.cs │ ├── Streaming │ │ ├── AutoSizeColumnTracker.cs │ │ ├── GZIPSheetDataWriter.cs │ │ ├── Properties │ │ │ ├── CommentProperty.cs │ │ │ ├── HyperlinkProperty.cs │ │ │ └── Property.cs │ │ ├── SXSSFCell.cs │ │ ├── SXSSFCreationHelper.cs │ │ ├── SXSSFEvaluationCell.cs │ │ ├── SXSSFEvaluationSheet.cs │ │ ├── SXSSFEvaluationWorkbook.cs │ │ ├── SXSSFFormulaEvaluator.cs │ │ ├── SXSSFRow.cs │ │ ├── SXSSFSheet.cs │ │ ├── SXSSFWorkbook.cs │ │ ├── SheetDataWriter.cs │ │ └── Values │ │ │ ├── BlankValue.cs │ │ │ ├── BooleanFormulaValue.cs │ │ │ ├── BooleanValue.cs │ │ │ ├── ErrorFormulaValue.cs │ │ │ ├── ErrorValue.cs │ │ │ ├── FormulaValue.cs │ │ │ ├── NumericFormulaValue.cs │ │ │ ├── NumericValue.cs │ │ │ ├── PlainStringValue.cs │ │ │ ├── RichTextValue.cs │ │ │ ├── StringFormulaValue.cs │ │ │ ├── StringValue.cs │ │ │ └── Value.cs │ ├── Util │ │ ├── EnumConverter.cs │ │ ├── IdentifierManager.cs │ │ └── PackageHelper.cs │ ├── XSSF │ │ ├── Extractor │ │ │ ├── XSSFExcelExtractor.cs │ │ │ └── XSSFExportToXml.cs │ │ ├── Model │ │ │ ├── CalculationChain.cs │ │ │ ├── CommentsTable.cs │ │ │ ├── ExternalLinksTable.cs │ │ │ ├── MapInfo.cs │ │ │ ├── ParagraphPropertyFetcher.cs │ │ │ ├── SharedStringsTable.cs │ │ │ ├── SingleXmlCells.cs │ │ │ ├── StylesTable.cs │ │ │ └── ThemesTable.cs │ │ ├── UserModel │ │ │ ├── Charts │ │ │ │ ├── AbstractXSSFChartSeries.cs │ │ │ │ ├── XSSFCategoryAxis.cs │ │ │ │ ├── XSSFChartAxis.cs │ │ │ │ ├── XSSFChartDataFactory.cs │ │ │ │ ├── XSSFChartLegend.cs │ │ │ │ ├── XSSFChartUtil.cs │ │ │ │ ├── XSSFLineChartData.cs │ │ │ │ ├── XSSFManualLayout.cs │ │ │ │ ├── XSSFScatterChartData.cs │ │ │ │ └── XSSFValueAxis.cs │ │ │ ├── Extensions │ │ │ │ ├── XSSFCellAlignment.cs │ │ │ │ ├── XSSFCellBorder.cs │ │ │ │ ├── XSSFCellFill.cs │ │ │ │ └── XSSFHeaderFooter.cs │ │ │ ├── Helpers │ │ │ │ ├── ColumnHelper.cs │ │ │ │ ├── HeaderFooterHelper.cs │ │ │ │ ├── XSSFFormulaUtils.cs │ │ │ │ ├── XSSFRowShifter.cs │ │ │ │ ├── XSSFSingleXmlCell.cs │ │ │ │ └── XSSFXmlColumnPr.cs │ │ │ ├── ListAutoNumber.cs │ │ │ ├── TextAlign.cs │ │ │ ├── TextAutofit.cs │ │ │ ├── TextCap.cs │ │ │ ├── TextDirection.cs │ │ │ ├── TextFontAlign.cs │ │ │ ├── TextHorizontalOverflow.cs │ │ │ ├── TextVerticalOverflow.cs │ │ │ ├── XSSFAnchor.cs │ │ │ ├── XSSFAutoFilter.cs │ │ │ ├── XSSFBorderFormatting.cs │ │ │ ├── XSSFCell.cs │ │ │ ├── XSSFCellStyle.cs │ │ │ ├── XSSFChart.cs │ │ │ ├── XSSFChartSheet.cs │ │ │ ├── XSSFChildAnchor.cs │ │ │ ├── XSSFClientAnchor.cs │ │ │ ├── XSSFColor.cs │ │ │ ├── XSSFComment.cs │ │ │ ├── XSSFConditionalFormatting.cs │ │ │ ├── XSSFConditionalFormattingRule.cs │ │ │ ├── XSSFConnector.cs │ │ │ ├── XSSFCreationHelper.cs │ │ │ ├── XSSFDataFormat.cs │ │ │ ├── XSSFDataValidation.cs │ │ │ ├── XSSFDataValidationConstraint.cs │ │ │ ├── XSSFDataValidationHelper.cs │ │ │ ├── XSSFDialogsheet.cs │ │ │ ├── XSSFDrawing.cs │ │ │ ├── XSSFEvaluationCell.cs │ │ │ ├── XSSFEvaluationSheet.cs │ │ │ ├── XSSFEvaluationWorkbook.cs │ │ │ ├── XSSFEvenFooter.cs │ │ │ ├── XSSFEvenHeader.cs │ │ │ ├── XSSFFactory.cs │ │ │ ├── XSSFFirstFooter.cs │ │ │ ├── XSSFFirstHeader.cs │ │ │ ├── XSSFFont.cs │ │ │ ├── XSSFFontFormatting.cs │ │ │ ├── XSSFFormulaEvaluator.cs │ │ │ ├── XSSFGraphicFrame.cs │ │ │ ├── XSSFHyperlink.cs │ │ │ ├── XSSFLineBreak.cs │ │ │ ├── XSSFMap.cs │ │ │ ├── XSSFName.cs │ │ │ ├── XSSFOddFooter.cs │ │ │ ├── XSSFOddHeader.cs │ │ │ ├── XSSFPatternFormatting.cs │ │ │ ├── XSSFPicture.cs │ │ │ ├── XSSFPictureData.cs │ │ │ ├── XSSFPivotCache.cs │ │ │ ├── XSSFPivotCacheDefinition.cs │ │ │ ├── XSSFPivotCacheRecords.cs │ │ │ ├── XSSFPivotTable.cs │ │ │ ├── XSSFPrintSetup.cs │ │ │ ├── XSSFRelation.cs │ │ │ ├── XSSFRichTextString.cs │ │ │ ├── XSSFRow.cs │ │ │ ├── XSSFShape.cs │ │ │ ├── XSSFShapeGroup.cs │ │ │ ├── XSSFSheet.cs │ │ │ ├── XSSFSheetConditionalFormatting.cs │ │ │ ├── XSSFSimpleShape.cs │ │ │ ├── XSSFTable.cs │ │ │ ├── XSSFTextBox.cs │ │ │ ├── XSSFTextParagraph.cs │ │ │ ├── XSSFTextRun.cs │ │ │ ├── XSSFVMLDrawing.cs │ │ │ └── XSSFWorkbook.cs │ │ ├── Util │ │ │ ├── CTColComparator.cs │ │ │ ├── EvilUnclosedBRFixingInputStream.cs │ │ │ └── NumericRange.cs │ │ └── XLSBUnsupportedException.cs │ └── XWPF │ │ ├── Extractor │ │ └── XWPFWordExtractor.cs │ │ ├── Model │ │ ├── XMLParagraph.cs │ │ ├── XWPFCommentsDecorator.cs │ │ ├── XWPFHeaderFooterPolicy.cs │ │ ├── XWPFHyperlinkDecorator.cs │ │ └── XWPFParagraphDecorator.cs │ │ └── Usermodel │ │ ├── AbstractXWPFSDT.cs │ │ ├── BodyElementType.cs │ │ ├── BodyType.cs │ │ ├── Borders.cs │ │ ├── BreakClear.cs │ │ ├── BreakType.cs │ │ ├── Document.cs │ │ ├── IBody.cs │ │ ├── IBodyElement.cs │ │ ├── ICell.cs │ │ ├── IRunBody.cs │ │ ├── IRunElement.cs │ │ ├── ISDTContent.cs │ │ ├── ISDTContents.cs │ │ ├── LineSpacingRule.cs │ │ ├── ParagraphAlignment.cs │ │ ├── PositionInParagraph.cs │ │ ├── TOC.cs │ │ ├── TextAlignment.cs │ │ ├── TextSegement.cs │ │ ├── UnderlinePatterns.cs │ │ ├── VerticalAlign.cs │ │ ├── XWPFAbstractNum.cs │ │ ├── XWPFComment.cs │ │ ├── XWPFDefaultParagraphStyle.cs │ │ ├── XWPFDefaultRunStyle.cs │ │ ├── XWPFDocument.cs │ │ ├── XWPFFactory.cs │ │ ├── XWPFFooter.cs │ │ ├── XWPFFootnote.cs │ │ ├── XWPFFootnotes.cs │ │ ├── XWPFHeader.cs │ │ ├── XWPFHeaderFooter.cs │ │ ├── XWPFHyperlink.cs │ │ ├── XWPFHyperlinkRun.cs │ │ ├── XWPFLatentStyles.cs │ │ ├── XWPFNum.cs │ │ ├── XWPFNumbering.cs │ │ ├── XWPFParagraph.cs │ │ ├── XWPFPicture.cs │ │ ├── XWPFPictureData.cs │ │ ├── XWPFRelation.cs │ │ ├── XWPFRun.cs │ │ ├── XWPFSDT.cs │ │ ├── XWPFSDTCell.cs │ │ ├── XWPFSDTContent.cs │ │ ├── XWPFSDTContentCell.cs │ │ ├── XWPFSettings.cs │ │ ├── XWPFStyle.cs │ │ ├── XWPFStyles.cs │ │ ├── XWPFTable.cs │ │ ├── XWPFTableCell.cs │ │ └── XWPFTableRow.cs ├── NPOI.OpenXml4Net │ ├── Exceptions │ │ ├── InvalidFormatException.cs │ │ ├── OpenXML4NetException.cs │ │ └── PartAlreadyExistsException.cs │ ├── NPOI.OpenXml4Net.csproj │ ├── OPC │ │ ├── CertificateEmbeddingOption.cs │ │ ├── CompressionOption.cs │ │ ├── Configuration.cs │ │ ├── ContentTypes.cs │ │ ├── EncryptionOption.cs │ │ ├── Internal │ │ │ ├── ContentType.cs │ │ │ ├── ContentTypeManager.cs │ │ │ ├── FileHelper.cs │ │ │ ├── Marshallers │ │ │ │ ├── DefaultMarshaller.cs │ │ │ │ ├── PackagePropertiesMarshaller.cs │ │ │ │ ├── ZipPackagePropertiesMarshaller.cs │ │ │ │ └── ZipPartMarshaller.cs │ │ │ ├── MemoryPackagePart.cs │ │ │ ├── MemoryPackagePartOutputStream.cs │ │ │ ├── PackagePropertiesPart.cs │ │ │ ├── PartMarshaller.cs │ │ │ ├── PartUnmarshaller.cs │ │ │ ├── Unmarshallers │ │ │ │ ├── PackagePropertiesUnmarshaller.cs │ │ │ │ └── UnmarshallContext.cs │ │ │ ├── ZipContentTypeManager.cs │ │ │ └── ZipHelper.cs │ │ ├── OPCPackage.cs │ │ ├── PackageAccess.cs │ │ ├── PackageNamespaces.cs │ │ ├── PackagePart.cs │ │ ├── PackagePartCollection.cs │ │ ├── PackagePartName.cs │ │ ├── PackageProperties.cs │ │ ├── PackageRelationship.cs │ │ ├── PackageRelationshipCollection.cs │ │ ├── PackageRelationshipTypes.cs │ │ ├── PackagingUriHelper.cs │ │ ├── RelationshipSource.cs │ │ ├── StreamHelper.cs │ │ ├── TargetMode.cs │ │ ├── ZipPackage.cs │ │ └── ZipPackagePart.cs │ └── Util │ │ ├── DocumentHelper.cs │ │ ├── XmlHelper.cs │ │ ├── ZipEntrySource.cs │ │ ├── ZipFileZipEntrySource.cs │ │ └── ZipInputStreamZipEntrySource.cs ├── NPOI.OpenXmlFormats │ ├── AdditionalCharacteristics.cs │ ├── Bibliography.cs │ ├── CustomPropertiesDocument.cs │ ├── CustomXmlDataProperties.cs │ ├── CustomXmlSchemaProperties.cs │ ├── DocumentPropertiesCustom.cs │ ├── DocumentPropertiesExtended.cs │ ├── DocumentPropertiesVariantTypes.cs │ ├── Drawing │ │ ├── AudioVideo.cs │ │ ├── BaseStylesheet.cs │ │ ├── BaseTypes.cs │ │ ├── Chart │ │ │ ├── AreaChart.cs │ │ │ ├── BarChart.cs │ │ │ ├── BubbleChart.cs │ │ │ ├── Chart.cs │ │ │ ├── ChartSpaceDocument.cs │ │ │ ├── LineChart.cs │ │ │ ├── PieChart.cs │ │ │ ├── RadarChart.cs │ │ │ ├── ScatterChart.cs │ │ │ └── SurfaceChart.cs │ │ ├── ChartDrawing.cs │ │ ├── Compatibility.cs │ │ ├── DiagramColorTransform.cs │ │ ├── DiagramDataModel.cs │ │ ├── DiagramDefinition.cs │ │ ├── DiagramElementPropertySet.cs │ │ ├── DiagramLayoutVariables.cs │ │ ├── DiagramStyleDefinition.cs │ │ ├── GraphicalObject.cs │ │ ├── GraphicalObjectAnimation.cs │ │ ├── GraphicalObjectFormat.cs │ │ ├── Gvml.cs │ │ ├── Picture.cs │ │ ├── Shape3DCamera.cs │ │ ├── Shape3DLighting.cs │ │ ├── Shape3DScene.cs │ │ ├── Shape3DScenePlane.cs │ │ ├── Shape3DStyles.cs │ │ ├── ShapeEffects.cs │ │ ├── ShapeGeometry.cs │ │ ├── ShapeLineProperties.cs │ │ ├── ShapeProperties.cs │ │ ├── ShapeStyle.cs │ │ ├── SpreadsheetDrawing.cs │ │ ├── SpreadsheetPicture.cs │ │ ├── StyleDefaults.cs │ │ ├── StyleSheet.cs │ │ ├── Table.cs │ │ ├── TableStyle.cs │ │ ├── Text.cs │ │ ├── TextBullet.cs │ │ ├── TextCharacter.cs │ │ ├── TextParagraph.cs │ │ ├── TextRun.cs │ │ ├── WordprocessingDrawing.cs │ │ └── spreadsheetShape.cs │ ├── ExtendedPropertiesDocument.cs │ ├── NPOI.OpenXmlFormats.csproj │ ├── OOXMLFactory.cs │ ├── RelationshipReference.cs │ ├── Shared │ │ └── Math.cs │ ├── Spreadsheet │ │ ├── AutoFilter.cs │ │ ├── BaseTypes.cs │ │ ├── CT_CalcCell.cs │ │ ├── CT_CalcChain.cs │ │ ├── CustomXmlMappings.cs │ │ ├── Document │ │ │ ├── CalcChainDocument.cs │ │ │ ├── ChartsheetDocument.cs │ │ │ ├── CommentsDocument.cs │ │ │ ├── ExternalLinkDocument.cs │ │ │ ├── MapInfoDocument.cs │ │ │ ├── SingleXmlCellsDocument.cs │ │ │ ├── SstDocument.cs │ │ │ ├── StyleSheetDocument.cs │ │ │ ├── TableDocument.cs │ │ │ ├── ThemeDocument.cs │ │ │ ├── WorkbookDocument.cs │ │ │ └── WorksheetDocument.cs │ │ ├── ExternalConnections.cs │ │ ├── PivotTable │ │ │ ├── CT_PivotCacheDefinition.cs │ │ │ ├── CT_PivotCacheRecords.cs │ │ │ └── CT_PivotTableDefinition.cs │ │ ├── QueryTable.cs │ │ ├── SharedString │ │ │ ├── CT_RElt.cs │ │ │ ├── CT_RPrElt.cs │ │ │ ├── CT_Rst.cs │ │ │ └── CT_Sst.cs │ │ ├── SharedStringTable.cs │ │ ├── SharedWorkbookRevisions.cs │ │ ├── SharedWorkbookUserNames.cs │ │ ├── Sheet.cs │ │ ├── Sheet │ │ │ ├── CT_Authors.cs │ │ │ ├── CT_Cell.cs │ │ │ ├── CT_Col.cs │ │ │ ├── CT_Cols.cs │ │ │ ├── CT_Comment.cs │ │ │ ├── CT_CommentList.cs │ │ │ ├── CT_Comments.cs │ │ │ ├── CT_Hyperlink.cs │ │ │ ├── CT_MergeCell.cs │ │ │ ├── CT_MergeCells.cs │ │ │ ├── CT_Row.cs │ │ │ ├── CT_Sheet.cs │ │ │ ├── CT_SheetData.cs │ │ │ ├── CT_SheetPr.cs │ │ │ ├── CT_Table.cs │ │ │ └── CT_Worksheet.cs │ │ ├── SheetMetadata.cs │ │ ├── SingleCellTable.cs │ │ ├── Styles.cs │ │ ├── Styles │ │ │ ├── CT_Border.cs │ │ │ ├── CT_BorderPr.cs │ │ │ ├── CT_Borders.cs │ │ │ ├── CT_CellAlignment.cs │ │ │ ├── CT_CellProtection.cs │ │ │ ├── CT_CellStyle.cs │ │ │ ├── CT_CellStyleXfs.cs │ │ │ ├── CT_CellStyles.cs │ │ │ ├── CT_CellXfs.cs │ │ │ ├── CT_Colors.cs │ │ │ ├── CT_Dxfs.cs │ │ │ ├── CT_Fill.cs │ │ │ ├── CT_Fills.cs │ │ │ ├── CT_Font.cs │ │ │ ├── CT_Fonts.cs │ │ │ ├── CT_NumFmt.cs │ │ │ ├── CT_NumFmts.cs │ │ │ ├── CT_PatternFill.cs │ │ │ ├── CT_TableStyles.cs │ │ │ └── CT_Xf.cs │ │ ├── SupplementaryWorkbooks.cs │ │ ├── Workbook.cs │ │ └── Workbook │ │ │ ├── CT_BookViews.cs │ │ │ ├── CT_DefinedNames.cs │ │ │ ├── CT_ExternalReferences.cs │ │ │ ├── CT_PivotCache.cs │ │ │ ├── CT_Sheets.cs │ │ │ ├── CT_SmartTags.cs │ │ │ ├── CT_WebPublishObjects.cs │ │ │ └── CT_Workbook.cs │ ├── Vml │ │ ├── Main.cs │ │ ├── OfficeDrawing.cs │ │ ├── PresentationDrawing.cs │ │ ├── SpreadsheetDrawing.cs │ │ └── WordprocessingDrawing.cs │ ├── Wordprocessing │ │ ├── BaseTypes.cs │ │ ├── CustomXml.cs │ │ ├── Document.cs │ │ ├── Document │ │ │ ├── CommentsDocument.cs │ │ │ ├── DocumentDocument.cs │ │ │ ├── EndnotesDocument.cs │ │ │ ├── FootnotesDocument.cs │ │ │ ├── FtrDocument.cs │ │ │ ├── HdrDocument.cs │ │ │ ├── NumberingDocument.cs │ │ │ ├── SettingsDocument.cs │ │ │ └── StylesDocument.cs │ │ ├── Font.cs │ │ ├── FormField.cs │ │ ├── Frame.cs │ │ ├── HdrFtr.cs │ │ ├── Markup.cs │ │ ├── Numbering.cs │ │ ├── PageSetup.cs │ │ ├── Paragraph.cs │ │ ├── Picture.cs │ │ ├── RangePermission.cs │ │ ├── Run.cs │ │ ├── Sdt.cs │ │ ├── Settings.cs │ │ ├── Styles.cs │ │ ├── Tab.cs │ │ ├── Table.cs │ │ └── wml.cs │ └── XmlHelper.cs └── NPOI │ ├── DDF │ ├── AbstractEscherOptRecord.cs │ ├── DefaultEscherRecordFactory.cs │ ├── EscherArrayProperty.cs │ ├── EscherBSERecord.cs │ ├── EscherBitmapBlip.cs │ ├── EscherBlipRecord.cs │ ├── EscherBoolProperty.cs │ ├── EscherChildAnchorRecord.cs │ ├── EscherClientAnchorRecord.cs │ ├── EscherClientDataRecord.cs │ ├── EscherColorRef.cs │ ├── EscherComplexProperty.cs │ ├── EscherContainerRecord.cs │ ├── EscherDgRecord.cs │ ├── EscherDggRecord.cs │ ├── EscherDump.cs │ ├── EscherMetafileBlip.cs │ ├── EscherOptRecord.cs │ ├── EscherPictBlip.cs │ ├── EscherProperties.cs │ ├── EscherProperty.cs │ ├── EscherPropertyFactory.cs │ ├── EscherPropertyMetaData.cs │ ├── EscherRGBProperty.cs │ ├── EscherRecord.cs │ ├── EscherRecordFactory.cs │ ├── EscherSerializationListener.cs │ ├── EscherShapePathProperty.cs │ ├── EscherSimpleProperty.cs │ ├── EscherSpRecord.cs │ ├── EscherSpgrRecord.cs │ ├── EscherSplitMenuColorsRecord.cs │ ├── EscherTertiaryOptRecord.cs │ ├── EscherTextboxRecord.cs │ ├── NullEscherSerializationListener.cs │ └── UnknownEscherRecord.cs │ ├── EncryptedDocumentException.cs │ ├── GlobalSuppressions.cs │ ├── HPSF │ ├── Array.cs │ ├── Blob.cs │ ├── ClipboardData.cs │ ├── CodePageString.cs │ ├── Constants.cs │ ├── Currency.cs │ ├── CustomProperties.cs │ ├── CustomProperty.cs │ ├── Date.cs │ ├── Decimal.cs │ ├── DocumentSummaryInformation.cs │ ├── Extractor │ │ └── HPSFPropertiesExtractor.cs │ ├── Filetime.cs │ ├── GUID.cs │ ├── HPSFException.cs │ ├── HPSFPropertiesOnlyDocument.cs │ ├── HPSFRuntimeException.cs │ ├── IllegalPropertySetDataException.cs │ ├── IllegalVariantTypeException.cs │ ├── IndirectPropertyName.cs │ ├── MarkUnsupportedException.cs │ ├── MissingSectionException.cs │ ├── MutableProperty.cs │ ├── MutablePropertySet.cs │ ├── MutableSection.cs │ ├── NoFormatIDException.cs │ ├── NoPropertySetStreamException.cs │ ├── NoSingleSectionException.cs │ ├── Property.cs │ ├── PropertySet.cs │ ├── PropertySetFactory.cs │ ├── ReadingNotSupportedException.cs │ ├── Section.cs │ ├── SpecialPropertySet.cs │ ├── SummaryInformation.cs │ ├── Thumbnail.cs │ ├── TypeWriter.cs │ ├── TypedPropertyValue.cs │ ├── UnexpectedPropertySetTypeException.cs │ ├── UnicodeString.cs │ ├── UnsupportedEncodingException.cs │ ├── UnsupportedVariantTypeException.cs │ ├── Util.cs │ ├── Variant.cs │ ├── VariantBool.cs │ ├── VariantSupport.cs │ ├── VariantTypeException.cs │ ├── Vector.cs │ ├── VersionedStream.cs │ ├── Wellknown │ │ ├── PropertyIDMap.cs │ │ └── SectionIDMap.cs │ └── WritingNotSupportedException.cs │ ├── HSSF │ ├── EventModel │ │ ├── ERFListener.cs │ │ └── EventRecordFactory.cs │ ├── EventUserModel │ │ ├── AbortableHSSFListener.cs │ │ ├── DummyRecord │ │ │ ├── DummyRecordBase.cs │ │ │ ├── LastCellOfRowDummyRecord.cs │ │ │ ├── MissingCellDummyRecord.cs │ │ │ └── MissingRowDummyRecord.cs │ │ ├── EventWorkbookBuilder.cs │ │ ├── FormatTrackingHSSFListener.cs │ │ ├── HSSFEventFactory.cs │ │ ├── HSSFListener.cs │ │ ├── HSSFRecordStream.cs │ │ ├── HSSFRequest.cs │ │ ├── HSSFUserException.cs │ │ └── MissingRecordAwareHSSFListener.cs │ ├── Extractor │ │ ├── EventBasedExcelExtractor.cs │ │ ├── ExcelExtractor.cs │ │ └── OldExcelExtractor.cs │ ├── Model │ │ ├── AbstractShape.cs │ │ ├── ComboboxShape.cs │ │ ├── CommentShape.cs │ │ ├── ConvertAnchor.cs │ │ ├── DrawingManager.cs │ │ ├── DrawingManager2.cs │ │ ├── HSSFFormulaParser.cs │ │ ├── InternalSheet.cs │ │ ├── InternalWorkbook.cs │ │ ├── LineShape.cs │ │ ├── LinkTable.cs │ │ ├── ParseNode.cs │ │ ├── PictureShape.cs │ │ ├── PolygonShape.cs │ │ ├── RecordOrderer.cs │ │ ├── RecordStream.cs │ │ ├── RowBlocksReader.cs │ │ ├── SimpleFilledShape.cs │ │ ├── TextboxShape.cs │ │ └── WorkbookRecordList.cs │ ├── OldExcelFormatException.cs │ ├── Record │ │ ├── AbstractEscherHolderRecord.cs │ │ ├── Aggregates │ │ │ ├── CFRecordsAggregate.cs │ │ │ ├── Chart │ │ │ │ ├── AXMAggregate.cs │ │ │ │ ├── AXSAggregate.cs │ │ │ │ ├── AttachedLabelAggregate.cs │ │ │ │ ├── AxesAggregate.cs │ │ │ │ ├── AxisParentAggregate.cs │ │ │ │ ├── CRTAggregate.cs │ │ │ │ ├── ChartFormatsAggregate.cs │ │ │ │ ├── ChartRecordAggregate.cs │ │ │ │ ├── ChartSheetAggregate.cs │ │ │ │ ├── CrtMlFrtAggregate.cs │ │ │ │ ├── DFTTextAggregate.cs │ │ │ │ ├── DVAxisAggregate.cs │ │ │ │ ├── DatAggregate.cs │ │ │ │ ├── DropBarAggregate.cs │ │ │ │ ├── FontListAggregate.cs │ │ │ │ ├── FrameAggregate.cs │ │ │ │ ├── GelFrameAggregate.cs │ │ │ │ ├── IVAxisAggregate.cs │ │ │ │ ├── LDAggregate.cs │ │ │ │ ├── SSAggregate.cs │ │ │ │ ├── SeriesAxisAggregate.cs │ │ │ │ ├── SeriesDataAggregate.cs │ │ │ │ ├── SeriesFormatAggregate.cs │ │ │ │ ├── ShapePropsAggregate.cs │ │ │ │ └── TextPropsAggregate.cs │ │ │ ├── ChartSubstreamRecordAggregate.cs │ │ │ ├── ColumnInfoRecordsAggregate.cs │ │ │ ├── ConditionalFormattingTable.cs │ │ │ ├── CustomViewSettingsRecordAggregate.cs │ │ │ ├── DataValidityTable.cs │ │ │ ├── FormulaRecordAggregate.cs │ │ │ ├── MergedCellsTable.cs │ │ │ ├── PLSAggregate.cs │ │ │ ├── PageSettingsBlock.cs │ │ │ ├── RecordAggregate.cs │ │ │ ├── RowRecordsAggregate.cs │ │ │ ├── SharedValueManager.cs │ │ │ ├── ValueRecordsAggregate.cs │ │ │ └── WorksheetProtectionBlock.cs │ │ ├── ArrayRecord.cs │ │ ├── AutoFilter │ │ │ ├── AutoFilterInfoRecord.cs │ │ │ ├── AutoFilterRecord.cs │ │ │ ├── DOPER.cs │ │ │ └── FilterModeRecord.cs │ │ ├── BOFRecord.cs │ │ ├── BackupRecord.cs │ │ ├── BiffHeaderInput.cs │ │ ├── BlankRecord.cs │ │ ├── BookBoolRecord.cs │ │ ├── BoolErrRecord.cs │ │ ├── BottomMarginRecord.cs │ │ ├── BoundSheetRecord.cs │ │ ├── CF │ │ │ ├── BorderFormatting.cs │ │ │ ├── CellRangeUtil.cs │ │ │ ├── FontFormatting.cs │ │ │ └── PatternFormatting.cs │ │ ├── CFHeaderRecord.cs │ │ ├── CFRuleRecord.cs │ │ ├── CRNCountRecord.cs │ │ ├── CRNRecord.cs │ │ ├── CalcCountRecord.cs │ │ ├── CalcModeRecord.cs │ │ ├── CellRecord.cs │ │ ├── CellValueRecordInterface.cs │ │ ├── Chart │ │ │ ├── AlRunsRecord.cs │ │ │ ├── AreaFormatRecord.cs │ │ │ ├── AreaRecord.cs │ │ │ ├── AttachedLabelRecord.cs │ │ │ ├── AxcExtRecord.cs │ │ │ ├── AxesUsedRecord.cs │ │ │ ├── AxisLineRecord.cs │ │ │ ├── AxisParentRecord.cs │ │ │ ├── AxisRecord.cs │ │ │ ├── BRAIRecord.cs │ │ │ ├── BarRecord.cs │ │ │ ├── BeginRecord.cs │ │ │ ├── BopPopCustomRecord.cs │ │ │ ├── BopPopRecord.cs │ │ │ ├── CatLabRecord.cs │ │ │ ├── CatSerRangeRecord.cs │ │ │ ├── Chart3DBarShapeRecord.cs │ │ │ ├── Chart3dRecord.cs │ │ │ ├── ChartEndBlockRecord.cs │ │ │ ├── ChartEndObjectRecord.cs │ │ │ ├── ChartFRTInfoRecord.cs │ │ │ ├── ChartFormatRecord.cs │ │ │ ├── ChartRecord.cs │ │ │ ├── ChartStartBlockRecord.cs │ │ │ ├── ChartStartObjectRecord.cs │ │ │ ├── CrtLayout12ARecord.cs │ │ │ ├── CrtLayout12Record.cs │ │ │ ├── CrtLineRecord.cs │ │ │ ├── CrtLinkRecord.cs │ │ │ ├── CrtMlFrtContinueRecord.cs │ │ │ ├── CrtMlFrtRecord.cs │ │ │ ├── DatRecord.cs │ │ │ ├── DataFormatRecord.cs │ │ │ ├── DataLabExtContentsRecord.cs │ │ │ ├── DataLabExtRecord.cs │ │ │ ├── DataLabelExtensionRecord.cs │ │ │ ├── DefaultTextRecord.cs │ │ │ ├── DropBarRecord.cs │ │ │ ├── EndBlockRecord.cs │ │ │ ├── EndRecord.cs │ │ │ ├── Fbi2Record.cs │ │ │ ├── FbiRecord.cs │ │ │ ├── FontBasisRecord.cs │ │ │ ├── FontXRecord.cs │ │ │ ├── FrameRecord.cs │ │ │ ├── FrtFontListRecord.cs │ │ │ ├── GelFrameRecord.cs │ │ │ ├── IFmtRecordRecord.cs │ │ │ ├── LegendExceptionRecord.cs │ │ │ ├── LegendRecord.cs │ │ │ ├── LineFormatRecord.cs │ │ │ ├── MarkerFormatRecord.cs │ │ │ ├── NumberFormatIndexRecord.cs │ │ │ ├── ObjectKind.cs │ │ │ ├── ObjectLinkRecord.cs │ │ │ ├── PicFRecord.cs │ │ │ ├── PieFormatRecord.cs │ │ │ ├── PieRecord.cs │ │ │ ├── PlotAreaRecord.cs │ │ │ ├── PlotGrowthRecord.cs │ │ │ ├── PosRecord.cs │ │ │ ├── RadarAreaRecord.cs │ │ │ ├── RadarRecord.cs │ │ │ ├── RichTextStreamRecord.cs │ │ │ ├── ScatterRecord.cs │ │ │ ├── SerAuxErrBarRecord.cs │ │ │ ├── SerAuxTrendRecord.cs │ │ │ ├── SerFmtRecord.cs │ │ │ ├── SerParentRecord.cs │ │ │ ├── SerToCrtRecord.cs │ │ │ ├── SeriesChartGroupIndexRecord.cs │ │ │ ├── SeriesIndexRecord.cs │ │ │ ├── SeriesLabelsRecord.cs │ │ │ ├── SeriesListRecord.cs │ │ │ ├── SeriesRecord.cs │ │ │ ├── SeriesTextRecord.cs │ │ │ ├── SeriesToChartGroupRecord.cs │ │ │ ├── ShapePropsStreamRecord.cs │ │ │ ├── ShtPropsRecord.cs │ │ │ ├── StartBlockRecord.cs │ │ │ ├── SurfRecord.cs │ │ │ ├── TextPropsStreamRecord.cs │ │ │ ├── TextRecord.cs │ │ │ ├── TickRecord.cs │ │ │ ├── UnitsRecord.cs │ │ │ ├── ValueRangeRecord.cs │ │ │ └── YMultRecord.cs │ │ ├── CodepageRecord.cs │ │ ├── ColumnInfoRecord.cs │ │ ├── Common │ │ │ ├── FeatFormulaErr2.cs │ │ │ ├── FeatProtection.cs │ │ │ ├── FeatSmartTag.cs │ │ │ ├── FtrHeader.cs │ │ │ ├── SharedFeature.cs │ │ │ └── UnicodeString.cs │ │ ├── Cont │ │ │ ├── ContinuableRecord.cs │ │ │ ├── ContinuableRecordInput.cs │ │ │ ├── ContinuableRecordOutput.cs │ │ │ └── UnknownLengthRecordOutput.cs │ │ ├── ContinueFrt12Record.cs │ │ ├── ContinueRecord.cs │ │ ├── CountryRecord.cs │ │ ├── Crypto │ │ │ ├── Biff8DecryptingStream.cs │ │ │ ├── Biff8EncryptionKey.cs │ │ │ ├── Biff8RC4.cs │ │ │ └── RC4.cs │ │ ├── CustomField.cs │ │ ├── DBCellRecord.cs │ │ ├── DConRefRecord.cs │ │ ├── DSFRecord.cs │ │ ├── DVALRecord.cs │ │ ├── DVRecord.cs │ │ ├── DateWindow1904Record.cs │ │ ├── DefaultColWidthRecord.cs │ │ ├── DefaultRowHeightRecord.cs │ │ ├── DeltaRecord.cs │ │ ├── DimensionsRecord.cs │ │ ├── DrawingGroupRecord.cs │ │ ├── DrawingRecord.cs │ │ ├── DrawingRecordForBiffViewer.cs │ │ ├── DrawingSelectionRecord.cs │ │ ├── EOFRecord.cs │ │ ├── EscherAggregate.cs │ │ ├── Excel9FileRecord.cs │ │ ├── ExtSSTInfoSubRecord.cs │ │ ├── ExtSSTRecord.cs │ │ ├── ExtendedFormatRecord.cs │ │ ├── ExternSheetRecord.cs │ │ ├── ExternSheetSubRecord.cs │ │ ├── ExternalNameRecord.cs │ │ ├── FeatHdrRecord.cs │ │ ├── FeatRecord.cs │ │ ├── FilePassRecord.cs │ │ ├── FileSharingRecord.cs │ │ ├── FnGroupCountRecord.cs │ │ ├── FontRecord.cs │ │ ├── FooterRecord.cs │ │ ├── FormatRecord.cs │ │ ├── FormulaRecord.cs │ │ ├── FtCblsSubRecord.cs │ │ ├── FtCfSubRecord.cs │ │ ├── FtPioGrbitSubRecord.cs │ │ ├── GridsetRecord.cs │ │ ├── GutsRecord.cs │ │ ├── HCenterRecord.cs │ │ ├── HeaderFooterBase.cs │ │ ├── HeaderFooterRecord.cs │ │ ├── HeaderRecord.cs │ │ ├── HideObjRecord.cs │ │ ├── HorizontalPageBreakRecord.cs │ │ ├── HyperlinkRecord.cs │ │ ├── IndexRecord.cs │ │ ├── InterfaceEndRecord.cs │ │ ├── InterfaceHdrRecord.cs │ │ ├── IterationRecord.cs │ │ ├── LabelRecord.cs │ │ ├── LabelSSTRecord.cs │ │ ├── LeftMarginRecord.cs │ │ ├── LinkedDataFormulaField.cs │ │ ├── MMSRecord.cs │ │ ├── Margin.cs │ │ ├── MergeCellsRecord.cs │ │ ├── MulBlankRecord.cs │ │ ├── MulRKRecord.cs │ │ ├── NameCommentRecord.cs │ │ ├── NameRecord.cs │ │ ├── NoteRecord.cs │ │ ├── NumberRecord.cs │ │ ├── ObjRecord.cs │ │ ├── ObjectProtectRecord.cs │ │ ├── OldCellRecord.cs │ │ ├── OldFormulaRecord.cs │ │ ├── OldLabelRecord.cs │ │ ├── OldSheetRecord.cs │ │ ├── OldStringRecord.cs │ │ ├── PageBreakRecord.cs │ │ ├── PaletteRecord.cs │ │ ├── PaneRecord.cs │ │ ├── PasswordRecord.cs │ │ ├── PasswordRev4Record.cs │ │ ├── PivotTable │ │ │ ├── DataItemRecord.cs │ │ │ ├── ExtendedPivotTableViewFieldsRecord.cs │ │ │ ├── PageItemRecord.cs │ │ │ ├── StreamIDRecord.cs │ │ │ ├── ViewDefinitionRecord.cs │ │ │ ├── ViewFieldsRecord.cs │ │ │ └── ViewSourceRecord.cs │ │ ├── PrecisionRecord.cs │ │ ├── PrintGridlinesRecord.cs │ │ ├── PrintHeadersRecord.cs │ │ ├── PrintSetupRecord.cs │ │ ├── PrintSizeRecord.cs │ │ ├── ProtectRecord.cs │ │ ├── ProtectionRev4Record.cs │ │ ├── RKRecord.cs │ │ ├── RecalcIdRecord.cs │ │ ├── Record.cs │ │ ├── RecordBase.cs │ │ ├── RecordFactory.cs │ │ ├── RecordFactoryInputStream.cs │ │ ├── RecordInputStream.cs │ │ ├── RefModeRecord.cs │ │ ├── RefreshAllRecord.cs │ │ ├── RightMarginRecord.cs │ │ ├── RowDataRecord.cs │ │ ├── RowRecord.cs │ │ ├── SCLRecord.cs │ │ ├── SSTDeserializer.cs │ │ ├── SSTRecord.cs │ │ ├── SSTSerializer.cs │ │ ├── SaveRecalcRecord.cs │ │ ├── ScenarioProtectRecord.cs │ │ ├── SelectionRecord.cs │ │ ├── SharedFormulaRecord.cs │ │ ├── SharedValueRecordBase.cs │ │ ├── SheetExtRecord.cs │ │ ├── StandardRecord.cs │ │ ├── StringRecord.cs │ │ ├── StyleRecord.cs │ │ ├── SubRecord │ │ │ ├── CommonObjectDataSubRecord.cs │ │ │ ├── EmbeddedObjectRefSubRecord.cs │ │ │ ├── EndSubRecord.cs │ │ │ ├── GroupMarkerSubRecord.cs │ │ │ ├── LbsDataSubRecord.cs │ │ │ ├── NoteStructureSubRecord.cs │ │ │ ├── ScrollableObjectSubRecord.cs │ │ │ └── SubRecord.cs │ │ ├── SupBookRecord.cs │ │ ├── TabIdRecord.cs │ │ ├── TableRecord.cs │ │ ├── TableStylesRecord.cs │ │ ├── TextObjectRecord.cs │ │ ├── TextOrientation.cs │ │ ├── TopMarginRecord.cs │ │ ├── UncalcedRecord.cs │ │ ├── UnknownRecord.cs │ │ ├── UseSelFSRecord.cs │ │ ├── UserSViewBegin.cs │ │ ├── UserSViewEnd.cs │ │ ├── VCenterRecord.cs │ │ ├── VerticalPageBreakRecord.cs │ │ ├── WSBoolRecord.cs │ │ ├── WindowOneRecord.cs │ │ ├── WindowProtectRecord.cs │ │ ├── WindowTwoRecord.cs │ │ ├── WriteAccessRecord.cs │ │ └── WriteProtectRecord.cs │ ├── Structure.cs │ ├── UserModel │ │ ├── DVConstraint.cs │ │ ├── EscherGraphics.cs │ │ ├── EvaluationCycleDetector.cs │ │ ├── EvaluationCycleDetectorManager.cs │ │ ├── FontDetails.cs │ │ ├── HSSFAnchor.cs │ │ ├── HSSFAutoFilter.cs │ │ ├── HSSFBorderFormatting.cs │ │ ├── HSSFCell.cs │ │ ├── HSSFCellStyle.cs │ │ ├── HSSFChart.cs │ │ ├── HSSFChildAnchor.cs │ │ ├── HSSFClientAnchor.cs │ │ ├── HSSFCombobox.cs │ │ ├── HSSFComment.cs │ │ ├── HSSFConditionalFormatting.cs │ │ ├── HSSFConditionalFormattingRule.cs │ │ ├── HSSFCreationHelper.cs │ │ ├── HSSFDataFormat.cs │ │ ├── HSSFDataFormatter.cs │ │ ├── HSSFDataValidation.cs │ │ ├── HSSFDataValidationHelper.cs │ │ ├── HSSFDateUtil.cs │ │ ├── HSSFErrorConstants.cs │ │ ├── HSSFEvaluationCell.cs │ │ ├── HSSFEvaluationSheet.cs │ │ ├── HSSFEvaluationWorkbook.cs │ │ ├── HSSFFont.cs │ │ ├── HSSFFontFormatting.cs │ │ ├── HSSFFooter.cs │ │ ├── HSSFFormulaEvaluator.cs │ │ ├── HSSFHeader.cs │ │ ├── HSSFHyperlink.cs │ │ ├── HSSFName.cs │ │ ├── HSSFObjectData.cs │ │ ├── HSSFOptimiser.cs │ │ ├── HSSFPalette.cs │ │ ├── HSSFPatriarch.cs │ │ ├── HSSFPatternFormatting.cs │ │ ├── HSSFPicture.cs │ │ ├── HSSFPictureData.cs │ │ ├── HSSFPolygon.cs │ │ ├── HSSFPrintSetup.cs │ │ ├── HSSFRichTextString.cs │ │ ├── HSSFRow.cs │ │ ├── HSSFShape.cs │ │ ├── HSSFShapeContainer.cs │ │ ├── HSSFShapeFactory.cs │ │ ├── HSSFShapeGroup.cs │ │ ├── HSSFShapeTypes.cs │ │ ├── HSSFSheet.cs │ │ ├── HSSFSheetConditionalFormatting.cs │ │ ├── HSSFSimpleShape.cs │ │ ├── HSSFTextbox.cs │ │ ├── HSSFWorkbook.cs │ │ ├── HeaderFooter.cs │ │ ├── OperationEvaluatorFactory.cs │ │ └── StaticFontMetrics.cs │ └── Util │ │ ├── GUID.cs │ │ ├── HSSFCellRangeAddress.cs │ │ ├── HSSFCellUtil.cs │ │ ├── HSSFColor.cs │ │ ├── HSSFRegionUtil.cs │ │ ├── LazilyConcatenatedByteArray.cs │ │ ├── RKUtil.cs │ │ └── RangeAddress.cs │ ├── Label.cs │ ├── NPOI.csproj │ ├── OldFileFormatException.cs │ ├── POIDocument.cs │ ├── POIFS │ ├── Common │ │ ├── POIFSBigBlockSize.cs │ │ └── POIFSConstants.cs │ ├── Dev │ │ ├── POIFSLister.cs │ │ ├── POIFSViewEngine.cs │ │ ├── POIFSViewable.cs │ │ └── POIFSViewer.cs │ ├── EventFileSystem │ │ ├── POIFSReader.cs │ │ ├── POIFSReaderEvent.cs │ │ ├── POIFSReaderEventArgs.cs │ │ ├── POIFSReaderListener.cs │ │ ├── POIFSReaderRegistry.cs │ │ ├── POIFSWriterEvent.cs │ │ ├── POIFSWriterEventArgs.cs │ │ └── POIFSWriterListener.cs │ ├── FileSystem │ │ ├── BATManaged.cs │ │ ├── BlockStore.cs │ │ ├── CloseIgnoringInputStream.cs │ │ ├── DirectoryEntry.cs │ │ ├── DirectoryNode.cs │ │ ├── DocumentDescriptor.cs │ │ ├── DocumentEntry.cs │ │ ├── DocumentInputStream.cs │ │ ├── DocumentNode.cs │ │ ├── DocumentOutputStream.cs │ │ ├── Entry.cs │ │ ├── EntryNode.cs │ │ ├── EntryUtils.cs │ │ ├── FilteringDirectoryNode.cs │ │ ├── NDocumentInputStream.cs │ │ ├── NDocumentOutputStream.cs │ │ ├── NPOIFSDocument.cs │ │ ├── NPOIFSFileSystem.cs │ │ ├── NPOIFSMiniStore.cs │ │ ├── NPOIFSStream.cs │ │ ├── NotOLE2FileException.cs │ │ ├── ODocumentInputStream.cs │ │ ├── OfficeXmlFileException.cs │ │ ├── Ole10Native.cs │ │ ├── Ole10NativeException.cs │ │ ├── POIFSDocument.cs │ │ ├── POIFSDocumentPath.cs │ │ ├── POIFSDocumentReader.cs │ │ ├── POIFSDocumentWriter.cs │ │ └── POIFSFileSystem.cs │ ├── NIO │ │ ├── ByteArrayBackedDataSource.cs │ │ ├── DataSource.cs │ │ └── FileBackedDataSource.cs │ ├── Storage │ │ ├── BATBlock.cs │ │ ├── BigBlock.cs │ │ ├── BlockAllocationTableReader.cs │ │ ├── BlockAllocationTableWriter.cs │ │ ├── BlockList.cs │ │ ├── BlockListImpl.cs │ │ ├── BlockWritable.cs │ │ ├── DataInputBlock.cs │ │ ├── DocumentBlock.cs │ │ ├── HeaderBlock.cs │ │ ├── HeaderBlockConstants.cs │ │ ├── HeaderBlockReader.cs │ │ ├── HeaderBlockWriter.cs │ │ ├── ListManagedBlock.cs │ │ ├── PropertyBlock.cs │ │ ├── RawDataBlock.cs │ │ ├── RawDataBlockList.cs │ │ ├── SmallBlockTableReader.cs │ │ ├── SmallBlockTableWriter.cs │ │ ├── SmallDocumentBlock.cs │ │ └── SmallDocumentBlockList.cs │ └── property │ │ ├── Child.cs │ │ ├── DirectoryProperty.cs │ │ ├── DocumentProperty.cs │ │ ├── NPropertyTable.cs │ │ ├── Parent.cs │ │ ├── Property.cs │ │ ├── PropertyConstants.cs │ │ ├── PropertyFactory.cs │ │ ├── PropertyTable.cs │ │ ├── PropertyTableBase.cs │ │ └── RootProperty.cs │ ├── POIOLE2TextExtractor.cs │ ├── POITextExtractor.cs │ ├── POIUtils.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── font_metrics.properties │ └── functionMetadata.txt │ ├── SS │ ├── Extractor │ │ └── ExcelExtractor.cs │ ├── Format │ │ ├── CellDateFormatter.cs │ │ ├── CellElapsedFormatter.cs │ │ ├── CellFormat.cs │ │ ├── CellFormatCondition.cs │ │ ├── CellFormatPart.cs │ │ ├── CellFormatResult.cs │ │ ├── CellFormatType.cs │ │ ├── CellFormatter.cs │ │ ├── CellGeneralFormatter.cs │ │ ├── CellNumberFormatter.cs │ │ ├── CellTextFormatter.cs │ │ └── SimpleFraction.cs │ ├── Formula │ │ ├── Atp │ │ │ ├── AnalysisToolPak.cs │ │ │ ├── ArgumentsEvaluator.cs │ │ │ ├── DateParser.cs │ │ │ ├── IfError.cs │ │ │ ├── MRound.cs │ │ │ ├── NetworkdaysFunction.cs │ │ │ ├── ParityFunction.cs │ │ │ ├── RandBetween.cs │ │ │ ├── WorkdayCalculator.cs │ │ │ ├── WorkdayFunction.cs │ │ │ ├── YearFrac.cs │ │ │ └── YearFracCalculator.cs │ │ ├── CellCacheEntry.cs │ │ ├── CellEvaluationFrame.cs │ │ ├── CollaboratingWorkbooksEnvironment.cs │ │ ├── Constant │ │ │ ├── ConstantValueParser.cs │ │ │ └── ErrorConstant.cs │ │ ├── Eval │ │ │ ├── AreaEval.cs │ │ │ ├── AreaEvalBase.cs │ │ │ ├── BlankEval.cs │ │ │ ├── BoolEval.cs │ │ │ ├── ConcatEval.cs │ │ │ ├── ErrorEval.cs │ │ │ ├── Eval.cs │ │ │ ├── EvaluationException.cs │ │ │ ├── ExternalNameEval.cs │ │ │ ├── Forked │ │ │ │ ├── ForkedEvaluationCell.cs │ │ │ │ ├── ForkedEvaluationSheet.cs │ │ │ │ ├── ForkedEvaluationWorkbook.cs │ │ │ │ └── ForkedEvaluator.cs │ │ │ ├── FunctionEval.cs │ │ │ ├── FunctionNameEval.cs │ │ │ ├── IntersectionEval.cs │ │ │ ├── MissingArgEval.cs │ │ │ ├── NotImplementedFunctionException.cs │ │ │ ├── NumberEval.cs │ │ │ ├── NumericValueEval.cs │ │ │ ├── OperandResolver.cs │ │ │ ├── OperationEval.cs │ │ │ ├── PercentEval.cs │ │ │ ├── RangeEval.cs │ │ │ ├── RefEval.cs │ │ │ ├── RefEvalBase.cs │ │ │ ├── RelationalOperationEval │ │ │ │ ├── EqualEval.cs │ │ │ │ ├── GreaterEqualEval.cs │ │ │ │ ├── GreaterThanEval.cs │ │ │ │ ├── LessEqualEval.cs │ │ │ │ ├── LessThanEval.cs │ │ │ │ ├── NotEqualEval.cs │ │ │ │ └── RelationalOperationEval.cs │ │ │ ├── StringEval.cs │ │ │ ├── StringValueEval.cs │ │ │ ├── TwoOperandNumeric │ │ │ │ ├── AddEval.cs │ │ │ │ ├── DivideEval.cs │ │ │ │ ├── MultiplyEval.cs │ │ │ │ ├── PowerEval.cs │ │ │ │ ├── SubtractEval.cs │ │ │ │ └── TwoOperandNumericOperation.cs │ │ │ ├── UnaryMinusEval.cs │ │ │ ├── UnaryPlusEval.cs │ │ │ └── ValueEval.cs │ │ ├── EvaluationCache.cs │ │ ├── EvaluationCell.cs │ │ ├── EvaluationName.cs │ │ ├── EvaluationSheet.cs │ │ ├── EvaluationTracker.cs │ │ ├── EvaluationWorkbook.cs │ │ ├── ExternSheetReferenceToken.cs │ │ ├── Formula.cs │ │ ├── FormulaCellCache.cs │ │ ├── FormulaCellCacheEntry.cs │ │ ├── FormulaCellCacheEntrySet.cs │ │ ├── FormulaParser.cs │ │ ├── FormulaParsingWorkbook.cs │ │ ├── FormulaRenderer.cs │ │ ├── FormulaRenderingWorkbook.cs │ │ ├── FormulaType.cs │ │ ├── FormulaUsedBlankCellSet.cs │ │ ├── Function │ │ │ ├── FunctionDataBuilder.cs │ │ │ ├── FunctionMetadata.cs │ │ │ ├── FunctionMetadataReader.cs │ │ │ └── FunctionMetadataRegistry.cs │ │ ├── Functions │ │ │ ├── Address.cs │ │ │ ├── AggregateFunction.cs │ │ │ ├── BaseNumberUtils.cs │ │ │ ├── Bin2Dec.cs │ │ │ ├── Boolean │ │ │ │ ├── And.cs │ │ │ │ ├── BooleanFunction.cs │ │ │ │ ├── False.cs │ │ │ │ ├── Not.cs │ │ │ │ ├── Or.cs │ │ │ │ └── True.cs │ │ │ ├── CalendarFieldFunction.cs │ │ │ ├── Ceiling.cs │ │ │ ├── Choose.cs │ │ │ ├── Code.cs │ │ │ ├── Column.cs │ │ │ ├── Columns.cs │ │ │ ├── Combin.cs │ │ │ ├── Complex.cs │ │ │ ├── Count.cs │ │ │ ├── CountUtils.cs │ │ │ ├── Counta.cs │ │ │ ├── Countblank.cs │ │ │ ├── Countif.cs │ │ │ ├── Countifs.cs │ │ │ ├── DGet.cs │ │ │ ├── DMin.cs │ │ │ ├── DStarRunner.cs │ │ │ ├── DateFunc.cs │ │ │ ├── Days360.cs │ │ │ ├── Dec2Bin.cs │ │ │ ├── Dec2Hex.cs │ │ │ ├── Degrees.cs │ │ │ ├── Delta.cs │ │ │ ├── Dollar.cs │ │ │ ├── EDate.cs │ │ │ ├── EOMonth.cs │ │ │ ├── Errortype.cs │ │ │ ├── Even.cs │ │ │ ├── Exp.cs │ │ │ ├── Fact.cs │ │ │ ├── FactDouble.cs │ │ │ ├── Finance.cs │ │ │ ├── FinanceFunction.cs │ │ │ ├── FinanceLib.cs │ │ │ ├── Fixed.cs │ │ │ ├── Fixed0ArgFunction.cs │ │ │ ├── Fixed1ArgFunction.cs │ │ │ ├── Fixed2ArgFunction.cs │ │ │ ├── Fixed3ArgFunction.cs │ │ │ ├── Fixed4ArgFunction.cs │ │ │ ├── Floor.cs │ │ │ ├── FreeRefFunction.cs │ │ │ ├── Function.cs │ │ │ ├── Function0Arg.cs │ │ │ ├── Function1Arg.cs │ │ │ ├── Function2Arg.cs │ │ │ ├── Function3Arg.cs │ │ │ ├── Function4Arg.cs │ │ │ ├── Fv.cs │ │ │ ├── Hex2Dec.cs │ │ │ ├── Hlookup.cs │ │ │ ├── Hyperlink.cs │ │ │ ├── IDStarAlgorithm.cs │ │ │ ├── IPMT.cs │ │ │ ├── If.cs │ │ │ ├── ImReal.cs │ │ │ ├── Imaginary.cs │ │ │ ├── Index.cs │ │ │ ├── Indirect.cs │ │ │ ├── Int.cs │ │ │ ├── Intercept.cs │ │ │ ├── Irr.cs │ │ │ ├── LinearRegressionFunction.cs │ │ │ ├── Logical │ │ │ │ ├── Isblank.cs │ │ │ │ ├── Iserr.cs │ │ │ │ ├── Iserror.cs │ │ │ │ ├── Islogical.cs │ │ │ │ ├── Isna.cs │ │ │ │ ├── Isnontext.cs │ │ │ │ ├── Isnumber.cs │ │ │ │ ├── Isref.cs │ │ │ │ ├── Istext.cs │ │ │ │ └── LogicalFunction.cs │ │ │ ├── Lookup.cs │ │ │ ├── LookupUtils.cs │ │ │ ├── Match.cs │ │ │ ├── MathX.cs │ │ │ ├── MinaMaxa.cs │ │ │ ├── Mirr.cs │ │ │ ├── Mod.cs │ │ │ ├── Mode.cs │ │ │ ├── MultiOperandNumericFunction.cs │ │ │ ├── Na.cs │ │ │ ├── NotImplementedFunction.cs │ │ │ ├── Now.cs │ │ │ ├── Nper.cs │ │ │ ├── Npv.cs │ │ │ ├── Numeric │ │ │ │ ├── Abs.cs │ │ │ │ ├── Acos.cs │ │ │ │ ├── Acosh.cs │ │ │ │ ├── Asin.cs │ │ │ │ ├── Asinh.cs │ │ │ │ ├── Atan.cs │ │ │ │ ├── Atan2.cs │ │ │ │ ├── Atanh.cs │ │ │ │ ├── Cos.cs │ │ │ │ ├── Cosh.cs │ │ │ │ ├── Ln.cs │ │ │ │ ├── Log.cs │ │ │ │ ├── Log10.cs │ │ │ │ ├── NumericFunction.cs │ │ │ │ ├── Pi.cs │ │ │ │ ├── Poisson.cs │ │ │ │ ├── Rand.cs │ │ │ │ ├── Round.cs │ │ │ │ ├── Rounddown.cs │ │ │ │ ├── Roundup.cs │ │ │ │ ├── Sin.cs │ │ │ │ ├── Sinh.cs │ │ │ │ ├── Sqrt.cs │ │ │ │ ├── Tan.cs │ │ │ │ ├── Tanh.cs │ │ │ │ └── Trunc.cs │ │ │ ├── Oct2Dec.cs │ │ │ ├── Odd.cs │ │ │ ├── Offset.cs │ │ │ ├── PPMT.cs │ │ │ ├── Pmt.cs │ │ │ ├── Power.cs │ │ │ ├── Pv.cs │ │ │ ├── Quotient.cs │ │ │ ├── Radians.cs │ │ │ ├── Rank.cs │ │ │ ├── Rate.cs │ │ │ ├── Rept.cs │ │ │ ├── Roman.cs │ │ │ ├── Row.cs │ │ │ ├── Rows.cs │ │ │ ├── Sign.cs │ │ │ ├── Slope.cs │ │ │ ├── StatsLib.cs │ │ │ ├── Subtotal.cs │ │ │ ├── Sumif.cs │ │ │ ├── Sumifs.cs │ │ │ ├── Sumproduct.cs │ │ │ ├── Sumx2my2.cs │ │ │ ├── Sumx2py2.cs │ │ │ ├── Sumxmy2.cs │ │ │ ├── T.cs │ │ │ ├── Text │ │ │ │ ├── CHAR.cs │ │ │ │ ├── Clean.cs │ │ │ │ ├── Concatenate.cs │ │ │ │ ├── Exact.cs │ │ │ │ ├── LeftRight.cs │ │ │ │ ├── Len.cs │ │ │ │ ├── Lower.cs │ │ │ │ ├── Mid.cs │ │ │ │ ├── Proper.cs │ │ │ │ ├── Replace.cs │ │ │ │ ├── SearchFind.cs │ │ │ │ ├── Substitute.cs │ │ │ │ ├── Text.cs │ │ │ │ ├── TextFunction.cs │ │ │ │ ├── Trim.cs │ │ │ │ └── Upper.cs │ │ │ ├── TimeFunc.cs │ │ │ ├── Today.cs │ │ │ ├── Value.cs │ │ │ ├── Var1or2ArgFunction.cs │ │ │ ├── Var2or3ArgFunction.cs │ │ │ ├── Var3or4ArgFunction.cs │ │ │ ├── Vlookup.cs │ │ │ ├── WeekNum.cs │ │ │ ├── WeekdayFunc.cs │ │ │ └── XYNumericFunction.cs │ │ ├── IEvaluationListener.cs │ │ ├── ISheetRange.cs │ │ ├── IStabilityClassifier.cs │ │ ├── LazyAreaEval.cs │ │ ├── LazyRefEval.cs │ │ ├── NameIdentifier.cs │ │ ├── OperandClassTransformer.cs │ │ ├── OperationEvaluationContext.cs │ │ ├── OperationEvaluatorFactory.cs │ │ ├── PTG │ │ │ ├── AbstractFunctionPtg.cs │ │ │ ├── AddPtg.cs │ │ │ ├── Area2DPtgBase.cs │ │ │ ├── Area3DPtg.cs │ │ │ ├── Area3DPxg.cs │ │ │ ├── AreaErrPtg.cs │ │ │ ├── AreaI.cs │ │ │ ├── AreaNPtg.cs │ │ │ ├── AreaPtg.cs │ │ │ ├── AreaPtgBase.cs │ │ │ ├── ArrayPtg.cs │ │ │ ├── AttrPtg.cs │ │ │ ├── BoolPtg.cs │ │ │ ├── ConcatPtg.cs │ │ │ ├── ControlPtg.cs │ │ │ ├── Deleted3DPxg.cs │ │ │ ├── DeletedArea3DPtg.cs │ │ │ ├── DeletedRef3DPtg.cs │ │ │ ├── DividePtg.cs │ │ │ ├── EqualPtg.cs │ │ │ ├── ErrPtg.cs │ │ │ ├── ExpPtg.cs │ │ │ ├── ExternSheetNameResolver.cs │ │ │ ├── FormulaShifter.cs │ │ │ ├── FuncPtg.cs │ │ │ ├── FuncVarPtg.cs │ │ │ ├── GreaterEqualPtg.cs │ │ │ ├── GreaterThanPtg.cs │ │ │ ├── IntPtg.cs │ │ │ ├── IntersectionPtg.cs │ │ │ ├── LessEqualPtg.cs │ │ │ ├── LessThanPtg.cs │ │ │ ├── MemAreaPtg.cs │ │ │ ├── MemErrPtg.cs │ │ │ ├── MemFuncPtg.cs │ │ │ ├── MissingArgPtg.cs │ │ │ ├── MultiplyPtg.cs │ │ │ ├── NamePtg.cs │ │ │ ├── NameXPtg.cs │ │ │ ├── NameXPxg.cs │ │ │ ├── NotEqualPtg.cs │ │ │ ├── NumberPtg.cs │ │ │ ├── OperandPtg.cs │ │ │ ├── OperationPtg.cs │ │ │ ├── ParenthesisPtg.cs │ │ │ ├── PercentPtg.cs │ │ │ ├── PowerPtg.cs │ │ │ ├── Ptg.cs │ │ │ ├── Pxg.cs │ │ │ ├── Pxg3D.cs │ │ │ ├── RangePtg.cs │ │ │ ├── Ref2DPtgBase.cs │ │ │ ├── Ref3DPtg.cs │ │ │ ├── Ref3DPxg.cs │ │ │ ├── RefErrorPtg.cs │ │ │ ├── RefNPtg.cs │ │ │ ├── RefPtg.cs │ │ │ ├── RefPtgBase.cs │ │ │ ├── ScalarConstantPtg.cs │ │ │ ├── StringPtg.cs │ │ │ ├── SubtractPtg.cs │ │ │ ├── TblPtg.cs │ │ │ ├── UnaryMinusPtg.cs │ │ │ ├── UnaryPlusPtg.cs │ │ │ ├── UnionPtg.cs │ │ │ ├── UnknownPtg.cs │ │ │ └── ValueOperatorPtg.cs │ │ ├── ParseNode.cs │ │ ├── PlainCellCache.cs │ │ ├── PlainValueCellCacheEntry.cs │ │ ├── SharedFormula.cs │ │ ├── SheetIdentifier.cs │ │ ├── SheetNameFormatter.cs │ │ ├── SheetRangeEvaluator.cs │ │ ├── SheetRangeIdentifier.cs │ │ ├── SheetRefEvaluator.cs │ │ ├── ThreeDEval.cs │ │ ├── TwoDEval.cs │ │ ├── Udf │ │ │ ├── AggregatingUDFFinder.cs │ │ │ ├── DefaultUDFFinder.cs │ │ │ ├── IndexedUDFFinder.cs │ │ │ └── UDFFinder.cs │ │ ├── UserDefinedFunction.cs │ │ ├── WorkbookDependentFormula.cs │ │ ├── WorkbookEvaluator.cs │ │ └── WorkbookEvaluatorProvider.cs │ ├── HtmlDocumentFacade.cs │ ├── SpreadsheetVersion.cs │ ├── UserModel │ │ ├── AutoFilter.cs │ │ ├── BorderDiagonal.cs │ │ ├── BorderFormatting.cs │ │ ├── BorderStyle.cs │ │ ├── BuiltinFormats.cs │ │ ├── Cell.cs │ │ ├── CellRange.cs │ │ ├── CellStyle.cs │ │ ├── CellValue.cs │ │ ├── Chart.cs │ │ ├── Charts │ │ │ ├── AxisCrossBetween.cs │ │ │ ├── AxisCrosses.cs │ │ │ ├── AxisOrientation.cs │ │ │ ├── AxisPosition.cs │ │ │ ├── AxisTickMark.cs │ │ │ ├── ChartAxis.cs │ │ │ ├── ChartAxisFactory.cs │ │ │ ├── ChartData.cs │ │ │ ├── ChartDataFactory.cs │ │ │ ├── ChartDataSource.cs │ │ │ ├── ChartLegend.cs │ │ │ ├── ChartSeries.cs │ │ │ ├── DataSources.cs │ │ │ ├── LayoutMode.cs │ │ │ ├── LayoutTarget.cs │ │ │ ├── LegendPosition.cs │ │ │ ├── LineChartData.cs │ │ │ ├── LineChartSeries.cs │ │ │ ├── ManualLayout.cs │ │ │ ├── ManuallyPositionable.cs │ │ │ ├── ScatterChartData.cs │ │ │ ├── ScatterChartSeries.cs │ │ │ └── ValueAxis.cs │ │ ├── ClientAnchor.cs │ │ ├── Color.cs │ │ ├── Comment.cs │ │ ├── ComparisonOperator.cs │ │ ├── ConditionalFormatting.cs │ │ ├── ConditionalFormattingRule.cs │ │ ├── CreationHelper.cs │ │ ├── DataConsolidateFunction.cs │ │ ├── DataFormat.cs │ │ ├── DataFormatter.cs │ │ ├── DataValidation.cs │ │ ├── DataValidationConstraint.cs │ │ ├── DataValidationHelper.cs │ │ ├── DateUtil.cs │ │ ├── Drawing.cs │ │ ├── ErrorConstants.cs │ │ ├── ExcelStyleDateFormatter.cs │ │ ├── FillPattern.cs │ │ ├── Font.cs │ │ ├── FontCharset.cs │ │ ├── FontFamily.cs │ │ ├── FontFormatting.cs │ │ ├── FontScheme.cs │ │ ├── FontUnderline.cs │ │ ├── Footer.cs │ │ ├── FormulaError.cs │ │ ├── FormulaEvaluator.cs │ │ ├── FractionFormat.cs │ │ ├── Header.cs │ │ ├── HeaderFooter.cs │ │ ├── HorizontalAlignment.cs │ │ ├── Hyperlink.cs │ │ ├── LineStyle.cs │ │ ├── Name.cs │ │ ├── PageOrder.cs │ │ ├── PaperSize.cs │ │ ├── PatternFormatting.cs │ │ ├── Picture.cs │ │ ├── PictureData.cs │ │ ├── PrintCellComments.cs │ │ ├── PrintOrientation.cs │ │ ├── PrintSetup.cs │ │ ├── RichTextString.cs │ │ ├── Row.cs │ │ ├── Shape.cs │ │ ├── ShapeTypes.cs │ │ ├── Sheet.cs │ │ ├── SheetConditionalFormatting.cs │ │ ├── Textbox.cs │ │ ├── VerticalAlignment.cs │ │ └── Workbook.cs │ └── Util │ │ ├── AreaReference.cs │ │ ├── CellRangeAddress.cs │ │ ├── CellRangeAddress8Bit.cs │ │ ├── CellRangeAddressBase.cs │ │ ├── CellRangeAddressList.cs │ │ ├── CellReference.cs │ │ ├── CellUtil.cs │ │ ├── Cellwalk │ │ ├── CellHandler.cs │ │ ├── CellWalk.cs │ │ └── CellWalkContext.cs │ │ ├── DataMarker.cs │ │ ├── DateFormatConverter.cs │ │ ├── ExpandedDouble.cs │ │ ├── Format.cs │ │ ├── IEEEDouble.cs │ │ ├── ImageUtils.cs │ │ ├── MutableFPNumber.cs │ │ ├── NormalisedDecimal.cs │ │ ├── NumberComparer.cs │ │ ├── NumberToTextConverter.cs │ │ ├── PaneInformation.cs │ │ ├── Region.cs │ │ ├── RegionUtil.cs │ │ ├── SSCellRange.cs │ │ ├── SheetBuilder.cs │ │ ├── SheetReferences.cs │ │ ├── SheetUtil.cs │ │ └── WorkbookUtil.cs │ ├── UnsupportedFileFormatException.cs │ ├── Util │ ├── Arrays.cs │ ├── AssertFailedException.cs │ ├── BigInteger.cs │ ├── BitField.cs │ ├── BitFieldFactory.cs │ ├── BlockingInputStream.cs │ ├── ByteArrayInputStream.cs │ ├── ByteBuffer.cs │ ├── ByteField.cs │ ├── CRC32.cs │ ├── Character.cs │ ├── ClassID.cs │ ├── CloseIgnoringInputStream.cs │ ├── CodePageUtil.cs │ ├── Collections │ │ ├── EmptyEnumerable.cs │ │ ├── HashSet.cs │ │ ├── Properties.cs │ │ └── StringTokenizer.cs │ ├── DelayableLittleEndianOutput.cs │ ├── FixedField.cs │ ├── HexDump.cs │ ├── HexRead.cs │ ├── IOUtils.cs │ ├── IntList.cs │ ├── IntMapper.cs │ ├── IntegerField.cs │ ├── LZWDecompresser.cs │ ├── LittleEndian.cs │ ├── LittleEndianByteArrayInputStream.cs │ ├── LittleEndianByteArrayOutputStream.cs │ ├── LittleEndianConsts.cs │ ├── LittleEndianInput.cs │ ├── LittleEndianInputStream.cs │ ├── LittleEndianOutput.cs │ ├── LittleEndianOutputStream.cs │ ├── LongField.cs │ ├── NullLogger.cs │ ├── Number.cs │ ├── Operator.cs │ ├── POILogFactory.cs │ ├── POILogger.cs │ ├── PngUtils.cs │ ├── PushbackStream.cs │ ├── RecordFormatException.cs │ ├── RuntimeException.cs │ ├── ShortField.cs │ ├── ShortList.cs │ ├── StringUtil.cs │ ├── SystemOutLogger.cs │ ├── TempFile.cs │ ├── ULongField.cs │ └── Units.cs │ └── WP │ └── UserModel │ ├── ICharacterRun.cs │ └── IParagraph.cs └── test ├── NPOI.OpenXml4Net ├── ConfigurationManager.cs ├── NPOI.OOXML4Net.Testcases.csproj ├── OPC │ ├── Compliance │ │ ├── TestOPCComplianceCoreProperties.cs │ │ ├── TestOPCCompliancePackageModel.cs │ │ └── TestOPCCompliancePartName.cs │ └── Internal │ │ └── TestContentTypeManager.cs ├── OpenXML4NetTestDataSamples.cs ├── POIDataSamples.cs ├── TestContentType.cs ├── TestFileHelper.cs ├── TestListParts.cs ├── TestPackageCoreProperties.cs ├── TestPackagePartName.cs ├── TestPackageThumbnail.cs ├── TestPackagingURIHelper.cs ├── TestRelationships.cs └── appsettings.json ├── NPOI.OpenXmlFormats ├── App.config ├── NPOI.OOXML.TestCases.csproj ├── OpenXmlFormats │ └── Spreadsheet │ │ ├── CT_FontTest.cs │ │ ├── CalcChainDocumentTest.cs │ │ ├── CommentsDocumentTest.cs │ │ ├── DrawingDocumentTest.cs │ │ ├── VmlDrawingDocumentTest.cs │ │ ├── WorkbookDocumentTest.cs │ │ └── WorksheetDocumentTest.cs ├── SS │ ├── Converter │ │ └── TestExcelToHtmlConverterSuite.cs │ ├── Format │ │ └── TestCellFormatPart.cs │ ├── Formula │ │ ├── Eval │ │ │ └── TestXSSFCircularReferences.cs │ │ └── Functions │ │ │ └── TestProper.cs │ ├── TestWorkbookFactory.cs │ └── UserModel │ │ └── BaseTestXCell.cs ├── Test References │ └── NPOI.OpenXmlFormats.accessor ├── TestDetectAsOOXML.cs ├── TestEmbeded.cs ├── TestPOIXMLDocument.cs ├── TestPOIXMLProperties.cs ├── TestXMLPropertiesTextExtractor.cs ├── Util │ └── TestIdentifierManager.cs ├── XSSF │ ├── Extractor │ │ ├── TestXSSFEventBasedExcelExtractor.cs │ │ ├── TestXSSFEventBasedExcelExtractorUsingFactory.cs │ │ ├── TestXSSFExcelExtractor.cs │ │ ├── TestXSSFExcelExtractorUsingFactory.cs │ │ └── TestXSSFExportToXML.cs │ ├── IO │ │ └── TestLoadSaveXSSF.cs │ ├── Model │ │ ├── TestCalculationChain.cs │ │ ├── TestCommentsTable.cs │ │ ├── TestExternalLinksTable.cs │ │ ├── TestMapInfo.cs │ │ ├── TestSharedStringsTable.cs │ │ ├── TestStylesTable.cs │ │ └── TestThemesTable.cs │ ├── TestSheetProtection.cs │ ├── UserModel │ │ ├── Charts │ │ │ ├── TestXSSFCategoryAxis.cs │ │ │ ├── TestXSSFChartAxis.cs │ │ │ ├── TestXSSFChartLegend.cs │ │ │ ├── TestXSSFLineChartData.cs │ │ │ ├── TestXSSFManualLayout.cs │ │ │ ├── TestXSSFNumberCache.cs │ │ │ ├── TestXSSFScatterChartData.cs │ │ │ └── TestXSSFValueAxis.cs │ │ ├── Extensions │ │ │ ├── TestXSSFBorder.cs │ │ │ └── TestXSSFCellFill.cs │ │ ├── Helpers │ │ │ ├── TestColumnHelper.cs │ │ │ └── TestHeaderFooterHelper.cs │ │ ├── TestFormulaEvaluatorOnXSSF.cs │ │ ├── TestMissingWorkbookOnXSSF.cs │ │ ├── TestMultiSheetFormulaEvaluatorOnXSSF.cs │ │ ├── TestSheetHiding.cs │ │ ├── TestXSSFCell.cs │ │ ├── TestXSSFCellStyle.cs │ │ ├── TestXSSFChart.cs │ │ ├── TestXSSFChartSheet.cs │ │ ├── TestXSSFColGrouping.cs │ │ ├── TestXSSFColor.cs │ │ ├── TestXSSFComment.cs │ │ ├── TestXSSFDataFormat.cs │ │ ├── TestXSSFDataValidation.cs │ │ ├── TestXSSFDrawing.cs │ │ ├── TestXSSFExternalFunctions.cs │ │ ├── TestXSSFFont.cs │ │ ├── TestXSSFFormulaEvaluation.cs │ │ ├── TestXSSFFormulaParser.cs │ │ ├── TestXSSFHeaderFooter.cs │ │ ├── TestXSSFHyperlink.cs │ │ ├── TestXSSFName.cs │ │ ├── TestXSSFPicture.cs │ │ ├── TestXSSFPictureData.cs │ │ ├── TestXSSFPivotTable.cs │ │ ├── TestXSSFPrintSetup.cs │ │ ├── TestXSSFRichTextString.cs │ │ ├── TestXSSFRow.cs │ │ ├── TestXSSFSheet.cs │ │ ├── TestXSSFSheetAutosizeColumn.cs │ │ ├── TestXSSFSheetRowGrouping.cs │ │ ├── TestXSSFSheetShiftRows.cs │ │ ├── TestXSSFSheetUpdateArrayFormulas.cs │ │ ├── TestXSSFSimpleShape.cs │ │ ├── TestXSSFTable.cs │ │ ├── TestXSSFTextParagraph.cs │ │ ├── TestXSSFTextRun.cs │ │ ├── TestXSSFVMLDrawing.cs │ │ └── TestXSSFWorkbook.cs │ ├── Util │ │ ├── TestCTColComparator.cs │ │ ├── TestEvilUnclosedBRFixingInputStream.cs │ │ └── TestNumericRanges.cs │ ├── XSSFITestDataProvider.cs │ └── XSSFTestDataSamples.cs ├── XWPF │ ├── Extractor │ │ ├── TestExternalEntities.cs │ │ └── TestXWPFWordExtractor.cs │ ├── Model │ │ ├── TestXWPFDecorators.cs │ │ └── TestXWPFHeaderFooterPolicy.cs │ ├── TestAllExtendedProperties.cs │ ├── TestDocumentProtection.cs │ ├── TestPackageCorePropertiesGetKeywords.cs │ ├── TestXWPFBugs.cs │ ├── UserModel │ │ ├── TestXWPFBugs.cs │ │ ├── TestXWPFDocument.cs │ │ ├── TestXWPFFootnotes.cs │ │ ├── TestXWPFHeader.cs │ │ ├── TestXWPFHeadings.cs │ │ ├── TestXWPFNumbering.cs │ │ ├── TestXWPFParagraph.cs │ │ ├── TestXWPFPictureData.cs │ │ ├── TestXWPFRun.cs │ │ ├── TestXWPFSmartTag.cs │ │ ├── TestXWPFStyles.cs │ │ ├── TestXWPFTable.cs │ │ ├── TestXWPFTableCell.cs │ │ └── TestXWPFTableRow.cs │ └── XWPFTestDataSamples.cs ├── appsettings.json └── npoi.snk ├── NPOI.TestCases ├── ConfigurationManager.cs ├── DDF │ ├── TestEscherBSERecord.cs │ ├── TestEscherBlipRecord.cs │ ├── TestEscherBlipWMFRecord.cs │ ├── TestEscherBoolProperty.cs │ ├── TestEscherChildAnchorRecord.cs │ ├── TestEscherClientAnchorRecord.cs │ ├── TestEscherClientDataRecord.cs │ ├── TestEscherContainerRecord.cs │ ├── TestEscherDgRecord.cs │ ├── TestEscherDggRecord.cs │ ├── TestEscherDump.cs │ ├── TestEscherOptRecord.cs │ ├── TestEscherProperty.cs │ ├── TestEscherPropertyFactory.cs │ ├── TestEscherSpRecord.cs │ ├── TestEscherSpgrRecord.cs │ ├── TestEscherSplitMenuColorsRecord.cs │ └── TestUnknownEscherRecord.cs ├── Exceptions │ └── ComparisonFailure.cs ├── HPSF │ ├── Basic │ │ ├── POIFile.cs │ │ ├── TestBasic.cs │ │ ├── TestClassID.cs │ │ ├── TestEmptyProperties.cs │ │ ├── TestHPSFBugs.cs │ │ ├── TestMetaDataIPI.cs │ │ ├── TestReadAllFiles.cs │ │ ├── TestUnicode.cs │ │ ├── TestWrite.cs │ │ ├── TestWriteWellKnown.cs │ │ └── Util.cs │ ├── Extractor │ │ └── TestHPSFPropertiesExtractor.cs │ └── TestVariantSupport.cs ├── HSSF │ ├── EventModel │ │ ├── TestAbortableListener.cs │ │ └── TestEventRecordFactory.cs │ ├── EventUserModel │ │ ├── TestEventWorkbookBuilder.cs │ │ ├── TestFormatTrackingHSSFListener.cs │ │ ├── TestHSSFEventFactory.cs │ │ └── TestMissingRecordAwareHSSFListener.cs │ ├── Extractor │ │ ├── TestExcelExtractor.cs │ │ └── TestOldExcelExtractor.cs │ ├── HSSFITestDataProvider.cs │ ├── HSSFTestDataSamples.cs │ ├── Model │ │ ├── HSSFTestModelHelper.cs │ │ ├── TestDrawingAggregate.cs │ │ ├── TestDrawingManager.cs │ │ ├── TestDrawingManager2.cs │ │ ├── TestDrawingShapes.cs │ │ ├── TestEscherRecordFactory.cs │ │ ├── TestFormulaParser.cs │ │ ├── TestFormulaParserEval.cs │ │ ├── TestFormulaParserIf.cs │ │ ├── TestHSSFAnchor.cs │ │ ├── TestLinkTable.cs │ │ ├── TestOperandClassTransformer.cs │ │ ├── TestRVA.cs │ │ ├── TestRowBlocksReader.cs │ │ ├── TestShapes.cs │ │ ├── TestSheet.cs │ │ ├── TestSheetAdditional.cs │ │ └── TestWorkbook.cs │ ├── Record │ │ ├── Aggregates │ │ │ ├── Chart │ │ │ │ └── TestChartSheetAggregate.cs │ │ │ ├── TestCFRecordsAggregate.cs │ │ │ ├── TestColumnInfoRecordsAggregate.cs │ │ │ ├── TestFormulaRecordAggregate.cs │ │ │ ├── TestPageSettingsBlock.cs │ │ │ ├── TestRowRecordsAggregate.cs │ │ │ ├── TestSharedValueManager.cs │ │ │ └── TestValueRecordsAggregate.cs │ │ ├── CF │ │ │ └── TestCellRange.cs │ │ ├── Chart │ │ │ ├── TestAlRunsRecord.cs │ │ │ ├── TestAreaFormatRecord.cs │ │ │ ├── TestAreaRecord.cs │ │ │ ├── TestAttachedLabelRecord.cs │ │ │ ├── TestAxcExtRecord.cs │ │ │ ├── TestAxesUsedRecord.cs │ │ │ ├── TestAxisLineFormatRecord.cs │ │ │ ├── TestAxisLineRecord.cs │ │ │ ├── TestAxisParentRecord.cs │ │ │ ├── TestAxisRecord.cs │ │ │ ├── TestAxisUsedRecord.cs │ │ │ ├── TestBRAIRecord.cs │ │ │ ├── TestBarRecord.cs │ │ │ ├── TestCatSerRangeRecord.cs │ │ │ ├── TestChart3dRecord.cs │ │ │ ├── TestChartFormatRecord.cs │ │ │ ├── TestChartRecord.cs │ │ │ ├── TestChartTitleFormatRecord.cs │ │ │ ├── TestCrtLayout12ARecord.cs │ │ │ ├── TestCrtLayout12Record.cs │ │ │ ├── TestDatRecord.cs │ │ │ ├── TestDataFormatRecord.cs │ │ │ ├── TestDefaultTextRecord.cs │ │ │ ├── TestFbiRecord.cs │ │ │ ├── TestFontBasisRecord.cs │ │ │ ├── TestFontXRecord.cs │ │ │ ├── TestFrameRecord.cs │ │ │ ├── TestGelFrameRecord.cs │ │ │ ├── TestIFmtRecordRecord.cs │ │ │ ├── TestLegendRecord.cs │ │ │ ├── TestLineFormatRecord.cs │ │ │ ├── TestMarkerFormatRecord.cs │ │ │ ├── TestNumberFormatIndexRecord.cs │ │ │ ├── TestObjectLinkRecord.cs │ │ │ ├── TestPieFormatRecord.cs │ │ │ ├── TestPieRecord.cs │ │ │ ├── TestPlotAreaRecord.cs │ │ │ ├── TestPlotGrowthRecord.cs │ │ │ ├── TestSerToCrtRecord.cs │ │ │ ├── TestSeriesChartGroupIndexRecord.cs │ │ │ ├── TestSeriesIndexRecord.cs │ │ │ ├── TestSeriesLabelsRecord.cs │ │ │ ├── TestSeriesListRecord.cs │ │ │ ├── TestSeriesRecord.cs │ │ │ ├── TestSeriesTextRecord.cs │ │ │ ├── TestSeriesToChartGroupRecord.cs │ │ │ ├── TestShtPropsRecord.cs │ │ │ ├── TestTextRecord.cs │ │ │ ├── TestTickRecord.cs │ │ │ ├── TestUnitsRecord.cs │ │ │ └── TestValueRangeRecord.cs │ │ ├── Common │ │ │ └── TestUnicodeString.cs │ │ ├── Crypto │ │ │ ├── TestBiff8DecryptingStream.cs │ │ │ ├── TestBiff8EncryptionKey.cs │ │ │ └── TestRC4.cs │ │ ├── Pivot │ │ │ ├── TestExtendedPivotTableViewFieldsRecord.cs │ │ │ ├── TestPageItemRecord.cs │ │ │ └── TestViewFieldsRecord.cs │ │ ├── TestArrayRecord.cs │ │ ├── TestAutoFilterInfoRecord.cs │ │ ├── TestBOFRecord.cs │ │ ├── TestBoolErrRecord.cs │ │ ├── TestBoundSheetRecord.cs │ │ ├── TestCFHeaderRecord.cs │ │ ├── TestCFRuleRecord.cs │ │ ├── TestColumnInfoRecord.cs │ │ ├── TestCommonObjectDataSubRecord.cs │ │ ├── TestDConRefRecord.cs │ │ ├── TestDVALRecord.cs │ │ ├── TestDrawingGroupRecord.cs │ │ ├── TestDrawingRecord.cs │ │ ├── TestEmbeddedObjectRefSubRecord.cs │ │ ├── TestEndSubRecord.cs │ │ ├── TestEscherAggregate.cs │ │ ├── TestExtSSTRecord.cs │ │ ├── TestExtendedFormatRecord.cs │ │ ├── TestExternalNameRecord.cs │ │ ├── TestFeatRecord.cs │ │ ├── TestFontRecord.cs │ │ ├── TestFormulaRecord.cs │ │ ├── TestFtCblsSubRecord.cs │ │ ├── TestHyperlinkRecord.cs │ │ ├── TestInterfaceEndRecord.cs │ │ ├── TestLabelRecord.cs │ │ ├── TestLbsDataSubRecord.cs │ │ ├── TestMergeCellsRecord.cs │ │ ├── TestNameCommentRecord.cs │ │ ├── TestNameRecord.cs │ │ ├── TestNoteRecord.cs │ │ ├── TestNoteStructureSubRecord.cs │ │ ├── TestObjRecord.cs │ │ ├── TestPLVRecord.cs │ │ ├── TestPaletteRecord.cs │ │ ├── TestPaneRecord.cs │ │ ├── TestRecalcIdRecord.cs │ │ ├── TestRecordFactory.cs │ │ ├── TestRecordFactoryInputStream.cs │ │ ├── TestRecordInputStream.cs │ │ ├── TestSCLRecord.cs │ │ ├── TestSSTDeserializer.cs │ │ ├── TestSSTRecord.cs │ │ ├── TestSSTRecordSizeCalculator.cs │ │ ├── TestSharedFormulaRecord.cs │ │ ├── TestStringRecord.cs │ │ ├── TestStyleRecord.cs │ │ ├── TestSubRecord.cs │ │ ├── TestSupBookRecord.cs │ │ ├── TestTableRecord.cs │ │ ├── TestTextObjectBaseRecord.cs │ │ ├── TestTextObjectRecord.cs │ │ ├── TestUnicodeNameRecord.cs │ │ ├── TestUnicodeString.cs │ │ ├── TestWriteAccessRecord.cs │ │ └── TestcaseRecordInputStream.cs │ ├── UserModel │ │ ├── FormulaExtractor.cs │ │ ├── HSSFEvaluationTestHelper.cs │ │ ├── HSSFTestHelper.cs │ │ ├── RecordInspector.cs │ │ ├── SanityChecker.cs │ │ ├── StreamUtility.cs │ │ ├── TestCellStyle.cs │ │ ├── TestCloneSheet.cs │ │ ├── TestComment.cs │ │ ├── TestCopySheet.cs │ │ ├── TestDataValidation.cs │ │ ├── TestEmbeddedObjects.cs │ │ ├── TestEscherGraphics.cs │ │ ├── TestEscherGraphics2d.cs │ │ ├── TestExternalReferenceChange.cs │ │ ├── TestFontDetails.cs │ │ ├── TestFormulaEvaluatorBugs.cs │ │ ├── TestFormulaEvaluatorDocs.cs │ │ ├── TestFormulas.cs │ │ ├── TestHSSFCell.cs │ │ ├── TestHSSFClientAnchor.cs │ │ ├── TestHSSFComment.cs │ │ ├── TestHSSFConditionalFormatting.cs │ │ ├── TestHSSFDataFormat.cs │ │ ├── TestHSSFDataFormatter.cs │ │ ├── TestHSSFDateUtil.cs │ │ ├── TestHSSFExternalFunctions.cs │ │ ├── TestHSSFFont.cs │ │ ├── TestHSSFFormulaEvaluator.cs │ │ ├── TestHSSFHeaderFooter.cs │ │ ├── TestHSSFHyperlink.cs │ │ ├── TestHSSFName.cs │ │ ├── TestHSSFOptimiser.cs │ │ ├── TestHSSFPalette.cs │ │ ├── TestHSSFPatriarch.cs │ │ ├── TestHSSFPicture.cs │ │ ├── TestHSSFPictureData.cs │ │ ├── TestHSSFRichTextString.cs │ │ ├── TestHSSFRow.cs │ │ ├── TestHSSFSheet.cs │ │ ├── TestHSSFSheetOrder.cs │ │ ├── TestHSSFSheetSetOrder.cs │ │ ├── TestHSSFSheetShiftRows.cs │ │ ├── TestHSSFSheetUpdateArrayFormulas.cs │ │ ├── TestHSSFTextbox.cs │ │ ├── TestHSSFWorkbook.cs │ │ ├── TestLinkTable.cs │ │ ├── TestNonStandardWorkbookStreamNames.cs │ │ ├── TestOLE2Embeding.cs │ │ ├── TestPOIFSProperties.cs │ │ ├── TestPatriarch.cs │ │ ├── TestPolygon.cs │ │ ├── TestReadWriteChart.cs │ │ ├── TestRowStyle.cs │ │ ├── TestSanityChecker.cs │ │ ├── TestShapeGroup.cs │ │ ├── TestSheetHiding.cs │ │ ├── TestSheetShiftRows.cs │ │ ├── TestText.cs │ │ ├── TestUnfixedBugs.cs │ │ ├── TestUnicodeWorkbook.cs │ │ └── TestWorkbook.cs │ └── Util │ │ ├── TestAreaReference.cs │ │ ├── TestCellReference.cs │ │ ├── TestHSSFColor.cs │ │ ├── TestRKUtil.cs │ │ └── TestRangeAddress.cs ├── NPOI.TestCases.csproj ├── POIDataSamples.cs ├── POIFS │ ├── Crypt │ │ ├── TestDecryptor.cs │ │ └── TestEncryptionInfo.cs │ ├── EventFileSystem │ │ ├── Listener.cs │ │ └── TestPOIFSReaderRegistry.cs │ ├── FileSystem │ │ ├── ReaderWriter.cs │ │ ├── SlowInputStream.cs │ │ ├── TestDirectoryNode.cs │ │ ├── TestDocument.cs │ │ ├── TestDocumentDescriptor.cs │ │ ├── TestDocumentInputStream.cs │ │ ├── TestDocumentNode.cs │ │ ├── TestDocumentOutputStream.cs │ │ ├── TestEmptyDocument.cs │ │ ├── TestEntryUtils.cs │ │ ├── TestFileSystemBugs.cs │ │ ├── TestFilteringDirectoryNode.cs │ │ ├── TestNPOIFSFileSystem.cs │ │ ├── TestNPOIFSMiniStore.cs │ │ ├── TestNPOIFSStream.cs │ │ ├── TestOffice2007XMLException.cs │ │ ├── TestOle10Native.cs │ │ ├── TestPOIFSDocumentPath.cs │ │ ├── TestPOIFSFileSystem.cs │ │ └── TestPropertySorter.cs │ ├── NIO │ │ └── TestDataSource.cs │ ├── Properties │ │ ├── LocalProperty.cs │ │ ├── TestDirectoryProperty.cs │ │ ├── TestDocumentProperty.cs │ │ ├── TestPropertyFactory.cs │ │ ├── TestPropertyTable.cs │ │ └── TestRootProperty.cs │ └── Storage │ │ ├── LocalProperty.cs │ │ ├── LocalRawDataBlockList.cs │ │ ├── RawDataUtil.cs │ │ ├── TestBATBlock.cs │ │ ├── TestBlockAllocationTableReader.cs │ │ ├── TestBlockAllocationTableWriter.cs │ │ ├── TestBlockListImpl.cs │ │ ├── TestDocumentBlock.cs │ │ ├── TestHeaderBlockReading.cs │ │ ├── TestHeaderBlockWriting.cs │ │ ├── TestPropertyBlock.cs │ │ ├── TestRawDataBlock.cs │ │ ├── TestRawDataBlockList.cs │ │ ├── TestSmallBlockTableReader.cs │ │ ├── TestSmallBlockTableWriter.cs │ │ ├── TestSmallDocumentBlock.cs │ │ └── TestSmallDocumentBlockList.cs ├── POITestCase.cs ├── SS │ ├── Format │ │ ├── CellFormatTestBase.cs │ │ ├── TestCellFormat.cs │ │ └── TestCellFormatCondition.cs │ ├── Formula │ │ ├── Atp │ │ │ ├── TestDateParser.cs │ │ │ ├── TestIfError.cs │ │ │ ├── TestMRound.cs │ │ │ ├── TestNetworkdaysFunction.cs │ │ │ ├── TestRandBetween.cs │ │ │ ├── TestWorkdayCalculator.cs │ │ │ ├── TestWorkdayFunction.cs │ │ │ ├── TestYearFracCalculator.cs │ │ │ └── TestYearFracCalculatorFromSpreadsheet.cs │ │ ├── BaseTestExternalFunctions.cs │ │ ├── Constant │ │ │ └── TestConstantValueParser.cs │ │ ├── Eval │ │ │ ├── BaseTestCircularReferences.cs │ │ │ ├── EvalInstances.cs │ │ │ ├── Forked │ │ │ │ └── TestForkedEvaluator.cs │ │ │ ├── TestAreaEval.cs │ │ │ ├── TestDivideEval.cs │ │ │ ├── TestEqualEval.cs │ │ │ ├── TestExternalFunction.cs │ │ │ ├── TestFormulaBugs.cs │ │ │ ├── TestFormulasFromSpreadsheet.cs │ │ │ ├── TestHSSFCircularReferences.cs │ │ │ ├── TestMinusZeroResult.cs │ │ │ ├── TestMissingArgEval.cs │ │ │ ├── TestMultiSheetEval.cs │ │ │ ├── TestOperandResolver.cs │ │ │ ├── TestPercentEval.cs │ │ │ ├── TestRangeEval.cs │ │ │ └── TestUnaryPlusEval.cs │ │ ├── EvaluationListener.cs │ │ ├── Function │ │ │ ├── ExcelFileFormatDocFunctionExtractor.cs │ │ │ ├── TestFunctionMetadataRegistry.cs │ │ │ ├── TestParseMissingBuiltInFuncs.cs │ │ │ └── TestReadMissingBuiltInFuncs.cs │ │ ├── Functions │ │ │ ├── AbstractNumericTestCase.cs │ │ │ ├── BaseTestFunctionsFromSpreadsheet.cs │ │ │ ├── CountifsTests.cs │ │ │ ├── EvalFactory.cs │ │ │ ├── NumericFunctionInvoker.cs │ │ │ ├── RefValueImplementation.cs │ │ │ ├── TestAddress.cs │ │ │ ├── TestAverage.cs │ │ │ ├── TestBin2Dec.cs │ │ │ ├── TestCalendarFieldFunction.cs │ │ │ ├── TestClean.cs │ │ │ ├── TestCode.cs │ │ │ ├── TestCodeFunctionsFromSpreadsheet.cs │ │ │ ├── TestComplex.cs │ │ │ ├── TestComplexFunctionsFromSpreadsheet.cs │ │ │ ├── TestCountFuncs.cs │ │ │ ├── TestDGetFunctionsFromSpreadsheet.cs │ │ │ ├── TestDStarFunctionsFromSpreadsheet.cs │ │ │ ├── TestDate.cs │ │ │ ├── TestDays360.cs │ │ │ ├── TestDec2Bin.cs │ │ │ ├── TestDec2Hex.cs │ │ │ ├── TestDelta.cs │ │ │ ├── TestDeltaFunctionsFromSpreadsheet.cs │ │ │ ├── TestEDate.cs │ │ │ ├── TestEOMonth.cs │ │ │ ├── TestFactDoubleFunctionsFromSpreadsheet.cs │ │ │ ├── TestFinanceLib.cs │ │ │ ├── TestFind.cs │ │ │ ├── TestFixed.cs │ │ │ ├── TestFixedFunctionsFromSpreadsheet.cs │ │ │ ├── TestHex2Dec.cs │ │ │ ├── TestIPMT.cs │ │ │ ├── TestImRealFunctionsFromSpreadsheet.cs │ │ │ ├── TestImaginaryFunctionsFromSpreadsheet.cs │ │ │ ├── TestIndex.cs │ │ │ ├── TestIndexFunctionFromSpreadsheet.cs │ │ │ ├── TestIndirect.cs │ │ │ ├── TestIndirectFunctionFromSpreadsheet.cs │ │ │ ├── TestIntercept.cs │ │ │ ├── TestIrr.cs │ │ │ ├── TestIsBlank.cs │ │ │ ├── TestLeftRight.cs │ │ │ ├── TestLen.cs │ │ │ ├── TestLogicalFunction.cs │ │ │ ├── TestLookupFunctionsFromSpreadsheet.cs │ │ │ ├── TestMatch.cs │ │ │ ├── TestMatchFunctionsFromSpreadsheet.cs │ │ │ ├── TestMathX.cs │ │ │ ├── TestMid.cs │ │ │ ├── TestMirr.cs │ │ │ ├── TestNper.cs │ │ │ ├── TestNpv.cs │ │ │ ├── TestOct2Dec.cs │ │ │ ├── TestOffset.cs │ │ │ ├── TestPPMT.cs │ │ │ ├── TestPercentile.cs │ │ │ ├── TestPmt.cs │ │ │ ├── TestPoisson.cs │ │ │ ├── TestQuotient.cs │ │ │ ├── TestQuotientFunctionsFromSpreadsheet.cs │ │ │ ├── TestRank.cs │ │ │ ├── TestReptFunctionsFromSpreadsheet.cs │ │ │ ├── TestRomanFunctionsFromSpreadsheet.cs │ │ │ ├── TestRoundFuncs.cs │ │ │ ├── TestRowCol.cs │ │ │ ├── TestSlope.cs │ │ │ ├── TestStatsLib.cs │ │ │ ├── TestSubtotal.cs │ │ │ ├── TestSumif.cs │ │ │ ├── TestSumifs.cs │ │ │ ├── TestSumproduct.cs │ │ │ ├── TestTFunc.cs │ │ │ ├── TestText.cs │ │ │ ├── TestTime.cs │ │ │ ├── TestTrim.cs │ │ │ ├── TestTrunc.cs │ │ │ ├── TestValue.cs │ │ │ ├── TestWeekNumFunctionsFromSpreadsheet.cs │ │ │ ├── TestWeekNumFunctionsFromSpreadsheet2013.cs │ │ │ └── TestXYNumericFunction.cs │ │ ├── PTG │ │ │ ├── AbstractPtgTestCase.cs │ │ │ ├── TestArea3DPtg.cs │ │ │ ├── TestAreaErrPtg.cs │ │ │ ├── TestAreaPtg.cs │ │ │ ├── TestArrayPtg.cs │ │ │ ├── TestAttrPtg.cs │ │ │ ├── TestErrPtg.cs │ │ │ ├── TestExternalFunctionFormulas.cs │ │ │ ├── TestExternalNameReference.cs │ │ │ ├── TestFuncPtg.cs │ │ │ ├── TestFuncVarPtg.cs │ │ │ ├── TestIntersectionPtg.cs │ │ │ ├── TestPercentPtg.cs │ │ │ ├── TestRangePtg.cs │ │ │ ├── TestRef3DPtg.cs │ │ │ ├── TestReferencePtg.cs │ │ │ └── TestUnionPtg.cs │ │ ├── TestCellCacheEntry.cs │ │ ├── TestEvaluationCache.cs │ │ ├── TestFormulaShifter.cs │ │ ├── TestFunctionRegistry.cs │ │ ├── TestMissingWorkbook.cs │ │ ├── TestPlainCellCache.cs │ │ ├── TestSheetNameFormatter.cs │ │ ├── TestWorkbookEvaluator.cs │ │ └── WorkbookEvaluatorTestHelper.cs │ ├── ITestDataProvider.cs │ ├── TestSpreadsheetVersion.cs │ ├── UserModel │ │ ├── BaseTestCell.cs │ │ ├── BaseTestCellComment.cs │ │ ├── BaseTestConditionalFormatting.cs │ │ ├── BaseTestDataFormat.cs │ │ ├── BaseTestDataValidation.cs │ │ ├── BaseTestFont.cs │ │ ├── BaseTestFormulaEvaluator.cs │ │ ├── BaseTestHyperlink.cs │ │ ├── BaseTestNamedRange.cs │ │ ├── BaseTestPicture.cs │ │ ├── BaseTestRow.cs │ │ ├── BaseTestSheet.cs │ │ ├── BaseTestSheetAutosizeColumn.cs │ │ ├── BaseTestSheetHiding.cs │ │ ├── BaseTestSheetShiftRows.cs │ │ ├── BaseTestSheetUpdateArrayFormulas.cs │ │ ├── BaseTestWorkbook.cs │ │ ├── Charts │ │ │ └── TestDataSources.cs │ │ ├── TestDataFormatter.cs │ │ └── TestFractionFormat.cs │ └── Util │ │ ├── Cellwalk │ │ └── TestCellWalk.cs │ │ ├── NumberComparingSpreadsheetGenerator.cs │ │ ├── NumberComparisonExamples.cs │ │ ├── NumberRenderingSpreadsheetGenerator.cs │ │ ├── NumberToTextConversionExamples.cs │ │ ├── TestCellRangeAddress.cs │ │ ├── TestCellReference.cs │ │ ├── TestCellUtil.cs │ │ ├── TestDateFormatConverter.cs │ │ ├── TestExpandedDouble.cs │ │ ├── TestNumberComparer.cs │ │ ├── TestNumberToTextConverter.cs │ │ ├── TestSheetBuilder.cs │ │ ├── TestSheetUtil.cs │ │ └── TestWorkbookUtil.cs ├── Util │ ├── DummyPOILogger.cs │ ├── TestArrayUtil.cs │ ├── TestBitField.cs │ ├── TestByteField.cs │ ├── TestClassID.cs │ ├── TestHexDump.cs │ ├── TestIntList.cs │ ├── TestIntegerField.cs │ ├── TestLittleEndian.cs │ ├── TestLittleEndianStreams.cs │ ├── TestLongField.cs │ ├── TestPOILogFactory.cs │ ├── TestPOILogger.cs │ ├── TestShortField.cs │ ├── TestShortList.cs │ ├── TestStringUtil.cs │ └── TestULongField.cs └── appsettings.json ├── scratchpad ├── App.config ├── HSLF │ └── Util │ │ └── TestSystemTimeUtils.cs ├── HSSF │ └── Converter │ │ └── TestExcelToHtmlConverterSuite.cs ├── HWPF │ ├── Converter │ │ ├── AbstractWordUtilsTest.cs │ │ ├── TestNumberFormatter.cs │ │ ├── TestWordToFoConverter.cs │ │ ├── TestWordToHtmlConverter.cs │ │ └── TestWordToTextConverter.cs │ ├── Extractor │ │ ├── TestDifferentRoutes.cs │ │ ├── TestWordExtractor.cs │ │ └── TestWordExtractorBugs.cs │ ├── HWPFDocFixture.cs │ ├── HWPFTestCase.cs │ ├── HWPFTestDataSamples.cs │ ├── Model │ │ ├── TestBookmarksTables.cs │ │ ├── TestCHPBinTable.cs │ │ ├── TestDocumentProperties.cs │ │ ├── TestFileInformationBlock.cs │ │ ├── TestFontTable.cs │ │ ├── TestListTables.cs │ │ ├── TestNotesTables.cs │ │ ├── TestPAPBinTable.cs │ │ ├── TestPlexOfCps.cs │ │ ├── TestRevisionMarkAuthorTable.cs │ │ ├── TestSavedByTable.cs │ │ ├── TestSectionTable.cs │ │ ├── TestStyleSheet.cs │ │ └── TestTextPieceTable.cs │ ├── SPRM │ │ └── TestSprms.cs │ ├── TestFieldsTables.cs │ ├── TestHWPFPictures.cs │ ├── TestHWPFRangeParts.cs │ └── UserModel │ │ ├── TestBorderCode.cs │ │ ├── TestBug46610.cs │ │ ├── TestBugs.cs │ │ ├── TestHWPFOldDocument.cs │ │ ├── TestHeaderStories.cs │ │ ├── TestLists.cs │ │ ├── TestPictures.cs │ │ ├── TestProblems.cs │ │ ├── TestRange.cs │ │ ├── TestRangeDelete.cs │ │ ├── TestRangeInsertion.cs │ │ ├── TestRangeProperties.cs │ │ ├── TestRangeReplacement.cs │ │ ├── TestRangeSymbols.cs │ │ ├── TestShapes.cs │ │ └── TestTableRow.cs ├── POIDataSamples.cs ├── Properties │ └── AssemblyInfo.cs ├── TestCases.csproj └── npoi.snk └── test-data ├── ddf ├── 47143.dat └── Container.dat ├── diagram ├── 44501.vsd ├── 44594-2.vsd ├── 44594.vsd ├── NegativeChunkLength.vsd ├── NegativeChunkLength2.vsd ├── ShortChunk1.vsd ├── ShortChunk2.vsd ├── ShortChunk3.vsd ├── Test_Visio-Some_Random_Text.vsd ├── v6-non-utf16le.vsd └── visio_with_embeded.vsd ├── document ├── 45690.docm ├── 47304.doc ├── 51921-Word-Crash067.doc ├── 51921-Word-Crash067.docx ├── 52117.doc ├── 52288.docx ├── 52420.doc ├── 52449.docx ├── 53379.doc ├── 53446.doc ├── 55733.docx ├── 56392.docx ├── 56880.doc ├── 57312.docx ├── AIOOB-Tap.doc ├── Bug47742-text.txt ├── DiffFirstPageHeadFoot.doc ├── DiffFirstPageHeadFoot.docx ├── EmbeddedDocument.docx ├── EmptyDocumentWithHeaderFooter.docx ├── ExternalEntityInText.docx ├── FancyFoot.doc ├── FancyFoot.docx ├── FieldCodes.docx ├── FldSimple.docx ├── FloatingPictures.doc ├── HeaderFooterProblematic.doc ├── HeaderFooterUnicode.doc ├── HeaderFooterUnicode.docx ├── HeaderWithMacros.doc ├── Headers.docx ├── IllustrativeCases.docx ├── ListEntryNoListTable.doc ├── Lists.doc ├── MarkAuthorsTable.doc ├── NoHeadFoot.doc ├── NoHeadFoot.docx ├── Numbering.docx ├── NumberingWOverrides.docx ├── PageSpecificHeadFoot.doc ├── PageSpecificHeadFoot.docx ├── PasswordProtected.doc ├── Picture_Alternative_Text.doc ├── PngPicture.doc ├── ProblemExtracting.doc ├── SampleDoc.doc ├── SampleDoc.docx ├── SampleDoc.txt ├── SimpleHeadThreeColFoot.doc ├── SimpleHeadThreeColFoot.docx ├── Styles.docx ├── TestDocument.docx ├── TestPoiXMLDocumentCorePropertiesGetKeywords.docx ├── ThreeColFoot.doc ├── ThreeColFoot.docx ├── ThreeColHead.doc ├── ThreeColHead.docx ├── ThreeColHeadFoot.doc ├── ThreeColHeadFoot.docx ├── Tika-792.docx ├── VariousPictures.docx ├── WithArtShapes.doc ├── WithGIF.docx ├── WithTabs.docx ├── Word6.doc ├── Word6_sections.doc ├── Word6_sections2.doc ├── Word95.doc ├── WordWithAttachments.docx ├── abstract1.jpg ├── abstract2.jpg ├── abstract3.jpg ├── abstract4.jpg ├── au.edu.utas.www___data_assets_word_doc_0003_154335_International-Travel-Approval-Request-Form.doc ├── bookmarks.docx ├── checkboxes.docx ├── delins.docx ├── documentProperties.doc ├── documentProperties.docx ├── documentProtection_comments_no_password.docx ├── documentProtection_forms_no_password.docx ├── documentProtection_no_protection.docx ├── documentProtection_no_protection_tag_existing.docx ├── documentProtection_readonly_no_password.docx ├── documentProtection_trackedChanges_no_password.docx ├── drawing.docx ├── empty.doc ├── endingnote.doc ├── endnotes.docx ├── equation.doc ├── footnote.doc ├── footnotes.docx ├── form_footnotes.docx ├── headerFooter.docx ├── headerPic.docx ├── header_image.doc ├── heading123.docx ├── hyperlink.doc ├── innertable.doc ├── issue_51265_1.docx ├── issue_51265_2.docx ├── issue_51265_3.docx ├── lists-margins.doc ├── nature1.gif ├── nature1.jpg ├── nature1.png ├── nature2.jpg ├── nature3.jpg ├── nature4.jpg ├── o_kurs.doc ├── ob_is.doc ├── page-break-before.doc ├── page-break.doc ├── pageref.doc ├── parentinvguid.doc ├── picture.doc ├── pictures_escher.doc ├── protected_sample.docx ├── rasp.doc ├── sample.docx ├── saved-by-table.doc ├── simple-list.doc ├── simple-table.doc ├── simple-table2.doc ├── simple.doc ├── simple_image.jpg ├── simple_image.png ├── smarttag-snippet.docx ├── table-merges.doc ├── table_footnotes.docx ├── test-fields.doc ├── test.doc ├── test.dotx ├── test2.doc ├── testCroppedPictures.doc ├── testPictures.doc ├── testRangeDelete.doc ├── testRangeInsertion.doc ├── testRangeReplacement.doc ├── two_images.doc ├── vector_image.doc ├── vector_image.emf ├── watermark.doc ├── word95err.doc ├── word_with_embeded.doc ├── word_with_embeded_ooxml.doc └── zero-length.docx ├── font_metrics.properties ├── hpsf ├── Test0313rur.adm ├── TestBug44375.xls ├── TestChineseProperties.doc ├── TestCorel.shw ├── TestEditTime.doc ├── TestGermanWord90.doc ├── TestHPSFWritingFunctionality.doc ├── TestMickey.doc ├── TestNon4ByteBoundary.doc ├── TestRobert_Flaherty.doc ├── TestSectionDictionary.doc ├── TestShiftJIS.doc ├── TestSolidWorks.sldprt ├── TestThumbnail.xls ├── TestUnicode.xls ├── TestVisioWithCodepage.vsd ├── TestWriteWellKnown.doc ├── TestZeroLengthCodePage.mpp └── Test_Humor-Generation.ppt ├── openxml4j ├── 50154.xlsx ├── 51444.xlsx ├── 53282.xlsx ├── ContentTypeHasEntities.ooxml ├── ContentTypeHasParameters.ooxml ├── CorePropertiesHasEntities.ooxml ├── ExcelWithHyperlinks.xlsx ├── MultipleCoreProperties.docx ├── OPCCompliance_CoreProperties_DCTermsNamespaceLimitedUseFAIL.docx ├── OPCCompliance_CoreProperties_DoNotUseCompatibilityMarkupFAIL.docx ├── OPCCompliance_CoreProperties_LimitedXSITypeAttribute_NotPresentFAIL.docx ├── OPCCompliance_CoreProperties_LimitedXSITypeAttribute_PresentWithUnauthorizedValueFAIL.docx ├── OPCCompliance_CoreProperties_OnlyOneCorePropertiesPart.docx ├── OPCCompliance_CoreProperties_OnlyOneCorePropertiesPartFAIL.docx ├── OPCCompliance_CoreProperties_SUCCESS.docx ├── OPCCompliance_CoreProperties_UnauthorizedXMLLangAttributeFAIL.docx ├── OPCCompliance_DerivedPartNameFAIL.docx ├── OPCCompliance_NoCoreProperties.xlsx ├── PackageRelsHasEntities.ooxml ├── TestCreatePackageOUTPUT.docx ├── TestOpenPackageINPUT.docx ├── TestOpenPackageOUTPUT.docx ├── TestPackageCommon.docx ├── TestPackageCoreProperiesGetters.docx ├── TestPackageCoreProperiesSetters.docx ├── TestPackageThumbnail.docx ├── sample.docx ├── sample.xlsx └── thumbnail.jpg ├── poifs ├── 20-Force-on-a-current-S00.doc ├── BlockSize4096.zvi ├── BlockSize512.zvi ├── Notes.ole2 ├── ReferencesInvalidSectors.mpp ├── ShortLastBlock.qwp ├── ShortLastBlock.wps ├── extenxls_pwd123.xlsx ├── multimedia.doc ├── oleObject1.bin ├── only-zero-byte-streams.ole2 ├── protect.xlsx ├── protected_agile.docx ├── protected_sha512.xlsx └── unknown_properties.msg ├── publisher ├── 51318.pub ├── LinkAt0And10.pub ├── LinkAt10.pub ├── LinkAt10And20And30.pub ├── LinkAt10And20And30And40.pub ├── LinkAt10Longer.pub ├── LinkAt20.pub ├── Sample.pub ├── Sample.txt ├── Sample2.pub ├── Sample2.txt ├── Sample2000.pub ├── Sample2_2010.pub ├── Sample3.pub ├── Sample3.txt ├── Sample3_2010.pub ├── Sample4.pub ├── Sample4.txt ├── Sample4_2010.pub ├── Sample98.pub ├── SampleBrochure.pub ├── SampleNewsletter.pub ├── Sample_2010.pub └── Simple.pub ├── slideshow ├── 38256.ppt ├── 41071.ppt ├── 41384.ppt ├── 42474-1.ppt ├── 42474-2.ppt ├── 42485.ppt ├── 42486.ppt ├── 42520.ppt ├── 43781.ppt ├── 44296.ppt ├── 44770.ppt ├── 45537_Footer.ppt ├── 45537_Header.ppt ├── 45541_Footer.pptx ├── 45541_Header.pptx ├── 45543.ppt ├── 45545_Comment.pptx ├── 47261.ppt ├── 49386-null_dates.pptx ├── 49648.ppt ├── 51187.pptx ├── 51731.ppt ├── 52244.ppt ├── 52599.ppt ├── 53446.ppt ├── 54111.ppt ├── PPT95.ppt ├── PPTWithAttachments.pptm ├── ParagraphStylesShorterThanCharStyles.ppt ├── Password_Protected-56-hello.ppt ├── Password_Protected-hello.ppt ├── Password_Protected-np-hello.ppt ├── PictureTypeZero.ppt ├── SampleShow.ppt ├── SampleShow.pptx ├── SampleShow.txt ├── Single_Coloured_Page.ppt ├── Single_Coloured_Page_With_Fonts_and_Alignments.ppt ├── WithComments.ppt ├── WithLinks.ppt ├── WithMacros.ppt ├── WithMaster.ppt ├── WithMaster.pptx ├── alterman_security.ppt ├── backgrounds.ppt ├── backgrounds.pptx ├── badzip.ppt ├── basic_test_ppt_file.ppt ├── bug-41015.ppt ├── bullets.ppt ├── clock.dib ├── clock.jpg ├── cow.pict ├── empty.ppt ├── empty_textbox.ppt ├── headers_footers.ppt ├── headers_footers_2007.ppt ├── iisd_report.ppt ├── incorrect_slide_order.ppt ├── layouts.pptx ├── master_text.ppt ├── missing_core_records.ppt ├── next_test_ppt_file.ppt ├── numbers.ppt ├── numbers2.ppt ├── numbers3.ppt ├── ole2-embedding-2003.ppt ├── painting.png ├── pictures.ppt ├── pie-chart.pptx ├── ppt_with_embeded.ppt ├── ppt_with_png.ppt ├── pptx2svg.pptx ├── pptx2svg.svg ├── prProps.pptx ├── present1.pptx ├── ringin.wav ├── sample.pptx ├── santa.wmf ├── sci_cec.dib ├── shapes.pptx ├── slide_master.ppt ├── sound.ppt ├── testPPT.ppsm ├── testPPT.ppsx ├── testPPT.pptm ├── testPPT.pptx ├── testPPT.thmx ├── testPPT.xps ├── text-margins.ppt ├── text_shapes.ppt ├── themes.pptx ├── tomcat.png ├── with_japanese.pptx ├── with_textbox.ppt └── wrench.emf └── spreadsheet ├── 12561-1.xls ├── 12561-2.xls ├── 12843-1.xls ├── 12843-2.xls ├── 13224.xls ├── 13796.xls ├── 14330-1.xls ├── 14330-2.xls ├── 14460.xls ├── 15228.xls ├── 15375.xls ├── 15556.xls ├── 15573.xls ├── 1900DateWindowing.xls ├── 1904DateWindowing.xls ├── 19599-1.xls ├── 19599-2.xls ├── 22742.xls ├── 24207.xls ├── 24215.xls ├── 25183.xls ├── 25695.xls ├── 26100.xls ├── 27272_1.xls ├── 27272_2.xls ├── 27349-vlookupAcrossSheets.xls ├── 27364.xls ├── 27394.xls ├── 27852.xls ├── 27933.xls ├── 28772.xls ├── 28774.xls ├── 29675.xls ├── 29942.xls ├── 29982.xls ├── 30070.xls ├── 30540.xls ├── 30978-alt.xls ├── 30978-deleted.xls ├── 31661.xls ├── 31749.xls ├── 31979.xls ├── 32822.xls ├── 33082.xls ├── 34775.xls ├── 35564.xls ├── 35565.xls ├── 35897-type4.xls ├── 36947.xls ├── 37376.xls ├── 37630.xls ├── 37684-1.xls ├── 37684-2.xls ├── 37684.xls ├── 39234.xls ├── 39512.xls ├── 39634.xls ├── 3dFormulas.xls ├── 40285.xls ├── 41139.xls ├── 41546.xls ├── 42016.xls ├── 42464-ExpPtg-bad.xls ├── 42464-ExpPtg-ok.xls ├── 42726.xls ├── 42844.xls ├── 43251.xls ├── 43493.xls ├── 43623.xls ├── 43902.xls ├── 44010-SingleChart.xls ├── 44010-TwoCharts.xls ├── 44167.xls ├── 44200.xls ├── 44201.xls ├── 44235.xls ├── 44297.xls ├── 44593.xls ├── 44636.xls ├── 44643.xls ├── 44693.xls ├── 44840.xls ├── 44861.xls ├── 44891.xls ├── 44958.xls ├── 44958_1.xls ├── 45129.xls ├── 45290.xls ├── 45322.xls ├── 45365-2.xls ├── 45365.xls ├── 45430.xlsx ├── 45431.xlsm ├── 45492.xls ├── 45538_classic_Footer.xls ├── 45538_classic_Header.xls ├── 45538_form_Footer.xls ├── 45538_form_Header.xls ├── 45540_classic_Footer.xlsx ├── 45540_classic_Header.xlsx ├── 45540_form_Footer.xlsx ├── 45540_form_Header.xlsx ├── 45544.xlsx ├── 45672.xls ├── 45720.xls ├── 45761.xls ├── 45784.xls ├── 45829.png ├── 46136-NoWarnings.xls ├── 46136-WithWarnings.xls ├── 46137.xls ├── 46250.xls ├── 46368.xls ├── 46445.xls ├── 46535.xlsx ├── 46536.xlsx ├── 46670_http.xls ├── 46670_local.xls ├── 46670_ref_airline.xls ├── 46904.xls ├── 47026.xlsm ├── 47034.xls ├── 47089.xlsm ├── 47090.xlsx ├── 47154.xls ├── 47251.xls ├── 47251_1.xls ├── 47504.xlsx ├── 47668.xlsx ├── 47701.xls ├── 47737.xlsx ├── 47804.xlsx ├── 47813.xlsx ├── 47847.xls ├── 47862.xlsx ├── 47889.xlsx ├── 47920.xls ├── 47924.xls ├── 48026.xls ├── 48180.xls ├── 48325.xls ├── 48495.xlsx ├── 48539.xlsx ├── 48703.xls ├── 48703.xlsx ├── 48779.xlsx ├── 48923.xlsx ├── 48936-strings.txt ├── 48968.xls ├── 49096.xls ├── 49156.xlsx ├── 49185.xls ├── 49219.xls ├── 49237.xls ├── 49273.xlsx ├── 49325.xlsx ├── 49423.xls ├── 49524.xls ├── 49529.xls ├── 49581.xls ├── 49609.xlsx ├── 49612.xls ├── 49751.xls ├── 49761.xls ├── 49783.xlsx ├── 49872.xlsx ├── 49896.xls ├── 49928.xls ├── 49928.xlsx ├── 49931.xls ├── 49966.xlsx ├── 50020.xls ├── 50096.xlsx ├── 50298.xls ├── 50299.xlsx ├── 50426.xls ├── 50756.xls ├── 50779_1.xls ├── 50779_2.xls ├── 50784-font_theme_colours.xlsx ├── 50786-indexed_colours.xlsx ├── 50795.xlsx ├── 50833.xls ├── 50846-border_colours.xlsx ├── 50867_with_table.xlsx ├── 50939.xls ├── 51143.xls ├── 51222.xlsx ├── 51461.xls ├── 51470.xlsx ├── 51498.xls ├── 51535.xls ├── 51585.xlsx ├── 51670.xls ├── 51675.xls ├── 51710.xlsx ├── 51832.xls ├── 51850.xlsx ├── 51963.xlsx ├── 52348.xlsx ├── 52527.xls ├── 52575_main.xls ├── 52575_main.xlsx ├── 52575_source.xls ├── 52716.xlsx ├── 53101.xlsx ├── 53109.xls ├── 53282.xlsx ├── 53282b.xlsx ├── 53404.xls ├── 53433.xls ├── 53446.xls ├── 53568.xlsx ├── 53588.xls ├── 53691.xls ├── 53734.xlsx ├── 53798.xlsx ├── 53798_shiftNegative_TMPL.xls ├── 53798_shiftNegative_TMPL.xlsx ├── 53972.xls ├── 53984.xls ├── 54016.xls ├── 54034.xlsx ├── 54071.xlsx ├── 54084 - Greek - beyond BMP.txt ├── 54084 - Greek - beyond BMP.xlsx ├── 54206.xls ├── 54206.xlsx ├── 54288-ref.xlsx ├── 54288.xlsx ├── 54436.xlsx ├── 54500.xls ├── 54524.xlsx ├── 54607.xlsx ├── 54686_fraction_formats.txt ├── 54686_fraction_formats.xls ├── 54764-2.xlsx ├── 54764.xlsx ├── 55341_CellStyleBorder.xls ├── 55640.xlsx ├── 55745.xlsx ├── 55850.xlsx ├── 55864.xlsx ├── 55906-MultiSheetRefs.xls ├── 55906-MultiSheetRefs.xlsx ├── 55923.xlsx ├── 55924.xlsx ├── 55926.xlsx ├── 55927.xlsx ├── 56011.xlsx ├── 56017.xlsx ├── 56169.xlsx ├── 56170.xlsx ├── 56274.xlsx ├── 56278.xlsx ├── 56295.xlsx ├── 56315.xlsx ├── 56325.xls ├── 56325a.xls ├── 56420.xlsx ├── 56450.xls ├── 56482.xls ├── 56502.xlsx ├── 56511.xlsx ├── 56514.xlsx ├── 56563a.xls ├── 56563b.xls ├── 56574.xlsx ├── 56644.xlsx ├── 56688_1.xlsx ├── 56688_2.xlsx ├── 56688_3.xlsx ├── 56688_4.xlsx ├── 56702.xlsx ├── 56730.xlsx ├── 56737.xls ├── 56737.xlsx ├── 57003-FixedFunctionTestCaseData.xls ├── 57074.xls ├── 57163.xls ├── 57171_57163_57165.xlsx ├── 57176.xlsx ├── 57196.xlsx ├── 57231_MixedGasReport.xls ├── 57236.xlsx ├── 57362.xlsx ├── 57423.xlsx ├── 57456.xls ├── 57482-OnlyNumeric.xlsx ├── 57535.xlsx ├── 57826.xlsx ├── 57828.xlsx ├── AbnormalSharedFormulaFlag.xls ├── AreaErrPtg.xls ├── AverageTaxRates.xlsx ├── BOOK_in_capitals.xls ├── BigSSTRecord ├── BigSSTRecord2 ├── BigSSTRecord2CR1 ├── BigSSTRecord2CR2 ├── BigSSTRecord2CR3 ├── BigSSTRecord2CR4 ├── BigSSTRecord2CR5 ├── BigSSTRecord2CR6 ├── BigSSTRecord2CR7 ├── BigSSTRecordCR ├── Booleans.xlsx ├── BrNotClosed.xlsx ├── CodeFunctionTestCaseData.xls ├── ColumnStyle1dp.xls ├── ColumnStyle1dpColoured.xls ├── ColumnStyleNone.xls ├── ComplexFunctionTestCaseData.xls ├── ContinueRecordProblem.xls ├── CustomXMLMapping-singleattributenamespace.xlsx ├── CustomXMLMappings-complex-type.xlsx ├── CustomXMLMappings.xlsx ├── CustomXmlMappings-inverse-order.xlsx ├── DBCSHeader.xls ├── DBCSSheetName.xls ├── DGet.xls ├── DStar.xls ├── DataValidations-49244.xlsx ├── DateFormatTests.xlsx ├── DateFormats.xls ├── DeltaFunctionTestCaseData.xls ├── DrawingAndComments.xls ├── DrawingContinue.xls ├── ElapsedFormatTests.xlsx ├── EmbeddedChartHeaderTest.xls ├── Employee.xls ├── ErrPtg.xls ├── ExcelWithAttachments.xlsm ├── FW 8.6 Table Relationship2.xls ├── FactDoubleFunctionTestCaseData.xls ├── ForShifting.xls ├── ForShifting.xlsx ├── FormatChoiceTests.xls ├── FormatChoiceTests.xlsx ├── FormatConditionTests.xlsx ├── Formatting.xls ├── Formatting.xlsx ├── FormulaEvalTestData.xls ├── FormulaEvalTestData_Copy.xlsx ├── FormulaRefs.xls ├── FormulaSheetRange.xls ├── FormulaSheetRange.xlsx ├── GeneralFormatTests.xlsx ├── GroupTest.xlsx ├── HyperlinksOnManySheets.xls ├── IfFormulaTest.xls ├── ImRealFunctionTestCaseData.xls ├── Images.xls ├── ImaginaryFunctionTestCaseData.xls ├── IndexFunctionTestCaseData.xls ├── IndirectFunctionTestCaseData.xls ├── InlineStrings.xlsx ├── Intersection-52111.xls ├── IntersectionPtg.xls ├── IrrNpvTestCaseData.xls ├── LookupFunctionsTestCaseData.xls ├── MRExtraLines.xls ├── MatchFunctionTestCaseData.xls ├── MissingBits.xls ├── NewlineInFormulas.xlsx ├── NoGutsRecords.xls ├── NpoiBug5139.xls ├── NumberFormatApproxTests.xlsx ├── NumberFormatTests.xlsx ├── OddStyleRecord.xls ├── PercentPtg.xls ├── QuotientFunctionTestCaseData.xls ├── RangePtg.xls ├── ReadOnlyRecommended.xls ├── ReferencePtg.xls ├── RepeatingRowsCols.xls ├── RepeatingRowsCols.xlsx ├── ReptFunctionTestCaseData.xls ├── RomanFunctionTestCaseData.xls ├── SampleSS.strict.xlsx ├── SampleSS.txt ├── SampleSS.xls ├── SampleSS.xlsx ├── SharedFormulaTest.xls ├── SheetWithDrawing.xls ├── ShrinkToFit.xls ├── ShrinkToFit.xlsx ├── Simple.xls ├── Simple.xlsb ├── SimpleChart.xls ├── SimpleMultiCell.xls ├── SimpleMultiCell.xlsx ├── SimpleNormal.xlsx ├── SimpleStrict.xlsx ├── SimpleWithAutofilter.xls ├── SimpleWithChoose.xls ├── SimpleWithColours.xls ├── SimpleWithComments.xls ├── SimpleWithComments.xlsx ├── SimpleWithDataFormat.xls ├── SimpleWithFormula.xls ├── SimpleWithImages-mac.xls ├── SimpleWithImages.xls ├── SimpleWithPageBreaks.xls ├── SimpleWithPrintArea.xls ├── SimpleWithSkip.xls ├── SimpleWithStyling.xls ├── SingleLetterRanges.xls ├── SolverContainerAfterSPGR.xls ├── SquareMacro.xls ├── StringContinueRecords.xls ├── StringFormulas.xls ├── SubtotalsNested.xls ├── Tables.xlsx ├── TestRandBetween.xls ├── TextFormatTests.xlsx ├── Themes.xlsx ├── TwoSheetsNoneHidden.xls ├── TwoSheetsNoneHidden.xlsx ├── TwoSheetsOneHidden.xls ├── TwoSheetsOneHidden.xlsx ├── UncalcedRecord.xls ├── UnionPtg.xls ├── WORKBOOK_in_capitals.xls ├── WeekNumFunctionTestCaseData.xls ├── WeekNumFunctionTestCaseData2013.xls ├── WithChart.xls ├── WithChart.xlsx ├── WithChartSheet.xlsx ├── WithCheckBoxes.xls ├── WithConditionalFormatting.xls ├── WithConditionalFormatting.xlsx ├── WithDrawing.xlsx ├── WithEmbeddedObjects.xls ├── WithEmbeded.xlsx ├── WithExtendedStyles.xls ├── WithFormattedGraphTitle.xls ├── WithHyperlink.xls ├── WithMoreVariousData.xlsx ├── WithTable.xlsx ├── WithTextBox.xlsx ├── WithTextBox2.xlsx ├── WithThreeCharts.xls ├── WithThreeCharts.xlsx ├── WithTwoCharts.xls ├── WithTwoCharts.xlsx ├── WithTwoHyperLinks.xls ├── WithVariousData.xlsx ├── WrongFormulaRecordType.xls ├── XRefCalc.xls ├── XRefCalcData.xls ├── ar.org.apsme.www_Form%20Inscripcion%20Curso%20NO%20Socios.xls ├── atp.xls ├── atp.xlsx ├── blankworkbook.xls ├── bug_42794.mdb ├── bug_42794.xls ├── chart_sheet.xlsx ├── chartdemo.xls ├── colwidth.xls ├── com.aida-tour.www_SPO_files_maldives%20august%20october.xls ├── commentTest.xlsx ├── comments.xls ├── comments.xlsx ├── countblankExamples.xls ├── countifExamples.xls ├── dg-text.xls ├── drawings.xls ├── duprich1.xls ├── duprich2.xls ├── dvEmpty.xls ├── empty.xls ├── evencontinuation.txt ├── ex41187-19267.xls ├── ex42564-21435.xls ├── ex42564-21503.xls ├── ex42564-elementOrder.xls ├── ex42570-20305.xls ├── ex44921-21902.xls ├── ex45046-21984.xls ├── ex45582-22397.xls ├── ex45672.xls ├── ex45698-22488.xls ├── ex45978-extraLinkTableSheets.xls ├── ex46548-23133.xls ├── ex47747-sharedFormula.xls ├── excel_with_embeded.xls ├── excelant.xls ├── extendedtextstrings.txt ├── externalFunctionExample.xls ├── failxls.txt ├── finance.xls ├── headerFooterTest.xlsx ├── intercept.xls ├── logoKarmokar4.png ├── mirrTest.xls ├── missingFuncs44675.xls ├── mortgage-calculation.xls ├── multibookFormulaA.xls ├── multibookFormulaB.xls ├── namedinput.xls ├── noHeaderFooter47244.xls ├── npoiBug5010.xls ├── ole2-embedding.xls ├── overlapSharedFormula.xls ├── password.xls ├── picture.xlsx ├── protected_passtika.xlsx ├── rank.xls ├── ref-56737.xlsx ├── ref2-56737.xlsx ├── reordered_sheets.xlsx ├── resize_compare.xls ├── resize_compare.xlsx ├── richtextdata.txt ├── rk.xls ├── sample-beta.xlsx ├── sample.strict.xlsx ├── sample.xlsx ├── shared_formulas.xls ├── shared_formulas.xlsx ├── sheetProtection_allLocked.xlsx ├── sheetProtection_not_protected.xlsx ├── stringacross2continuations.txt ├── styles.xlsx ├── sumifformula.xls ├── sumifs.xls ├── templateExcelWithAutofilter.xls ├── test.xltx ├── testArraysAndTables.xls ├── testEXCEL_3.xls ├── testEXCEL_4.xls ├── testEXCEL_5.xls ├── testEXCEL_95.xls ├── testNames.xls ├── testRRaC.xls ├── testRVA.xls ├── test_properties1 ├── text.xls ├── unicodeNameRecord.xls ├── vmlDrawing1.vml ├── workbookProtection-sheet_password-2013.xlsx ├── workbookProtection-workbook_password-2013.xlsx ├── workbookProtection-workbook_password_user_range-2010.xlsx ├── workbookProtection_not_protected.xlsx ├── workbookProtection_workbook_revision_protected.xlsx ├── workbookProtection_workbook_structure_protected.xlsx ├── workbookProtection_workbook_windows_protected.xlsx ├── workbookProtection_worksheet_protected.xlsx ├── xlsx-jdbc.xlsx ├── xor-encryption-abc.xls └── yearfracExamples.xls /build/index.cake: -------------------------------------------------------------------------------- 1 | #load "./util.cake" 2 | #load "./version.cake" 3 | -------------------------------------------------------------------------------- /src/NPOI.OOXML/XWPF/Usermodel/XWPFHeaderFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/src/NPOI.OOXML/XWPF/Usermodel/XWPFHeaderFooter.cs -------------------------------------------------------------------------------- /src/NPOI/HSSF/Record/Chart/CatSerRangeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/src/NPOI/HSSF/Record/Chart/CatSerRangeRecord.cs -------------------------------------------------------------------------------- /src/NPOI/HSSF/Record/Chart/FontXRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/src/NPOI/HSSF/Record/Chart/FontXRecord.cs -------------------------------------------------------------------------------- /src/NPOI/HSSF/Util/RKUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/src/NPOI/HSSF/Util/RKUtil.cs -------------------------------------------------------------------------------- /src/NPOI/SS/Format/CellFormatPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/src/NPOI/SS/Format/CellFormatPart.cs -------------------------------------------------------------------------------- /test/NPOI.OpenXml4Net/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AppSettings": { 3 | "POI.testdata.path": "..\\..\\..\\..\\test-data", 4 | "ClientSettingsProvider.ServiceUri": "" 5 | } 6 | } -------------------------------------------------------------------------------- /test/NPOI.OpenXmlFormats/Test References/NPOI.OpenXmlFormats.accessor: -------------------------------------------------------------------------------- 1 | NPOI.OpenXmlFormats.dll 2 | Desktop 3 | -------------------------------------------------------------------------------- /test/NPOI.OpenXmlFormats/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AppSettings": { 3 | "POI.testdata.path": "..\\..\\..\\..\\test-data", 4 | "ClientSettingsProvider.ServiceUri": "" 5 | } 6 | } -------------------------------------------------------------------------------- /test/NPOI.OpenXmlFormats/npoi.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/NPOI.OpenXmlFormats/npoi.snk -------------------------------------------------------------------------------- /test/NPOI.TestCases/HPSF/Basic/TestMetaDataIPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/NPOI.TestCases/HPSF/Basic/TestMetaDataIPI.cs -------------------------------------------------------------------------------- /test/NPOI.TestCases/HPSF/Basic/TestWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/NPOI.TestCases/HPSF/Basic/TestWrite.cs -------------------------------------------------------------------------------- /test/NPOI.TestCases/HSSF/Model/TestWorkbook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/NPOI.TestCases/HSSF/Model/TestWorkbook.cs -------------------------------------------------------------------------------- /test/scratchpad/npoi.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/scratchpad/npoi.snk -------------------------------------------------------------------------------- /test/test-data/ddf/47143.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/ddf/47143.dat -------------------------------------------------------------------------------- /test/test-data/ddf/Container.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/ddf/Container.dat -------------------------------------------------------------------------------- /test/test-data/diagram/44501.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/44501.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/44594-2.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/44594-2.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/44594.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/44594.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/NegativeChunkLength.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/NegativeChunkLength.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/NegativeChunkLength2.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/NegativeChunkLength2.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/ShortChunk1.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/ShortChunk1.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/ShortChunk2.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/ShortChunk2.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/ShortChunk3.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/ShortChunk3.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/v6-non-utf16le.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/v6-non-utf16le.vsd -------------------------------------------------------------------------------- /test/test-data/diagram/visio_with_embeded.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/diagram/visio_with_embeded.vsd -------------------------------------------------------------------------------- /test/test-data/document/45690.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/45690.docm -------------------------------------------------------------------------------- /test/test-data/document/47304.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/47304.doc -------------------------------------------------------------------------------- /test/test-data/document/51921-Word-Crash067.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/51921-Word-Crash067.doc -------------------------------------------------------------------------------- /test/test-data/document/51921-Word-Crash067.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/51921-Word-Crash067.docx -------------------------------------------------------------------------------- /test/test-data/document/52117.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/52117.doc -------------------------------------------------------------------------------- /test/test-data/document/52288.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/52288.docx -------------------------------------------------------------------------------- /test/test-data/document/52420.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/52420.doc -------------------------------------------------------------------------------- /test/test-data/document/52449.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/52449.docx -------------------------------------------------------------------------------- /test/test-data/document/53379.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/53379.doc -------------------------------------------------------------------------------- /test/test-data/document/53446.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/53446.doc -------------------------------------------------------------------------------- /test/test-data/document/55733.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/55733.docx -------------------------------------------------------------------------------- /test/test-data/document/56392.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/56392.docx -------------------------------------------------------------------------------- /test/test-data/document/56880.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/56880.doc -------------------------------------------------------------------------------- /test/test-data/document/57312.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/57312.docx -------------------------------------------------------------------------------- /test/test-data/document/AIOOB-Tap.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/AIOOB-Tap.doc -------------------------------------------------------------------------------- /test/test-data/document/DiffFirstPageHeadFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/DiffFirstPageHeadFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/DiffFirstPageHeadFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/DiffFirstPageHeadFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/EmbeddedDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/EmbeddedDocument.docx -------------------------------------------------------------------------------- /test/test-data/document/ExternalEntityInText.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ExternalEntityInText.docx -------------------------------------------------------------------------------- /test/test-data/document/FancyFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/FancyFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/FancyFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/FancyFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/FieldCodes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/FieldCodes.docx -------------------------------------------------------------------------------- /test/test-data/document/FldSimple.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/FldSimple.docx -------------------------------------------------------------------------------- /test/test-data/document/FloatingPictures.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/FloatingPictures.doc -------------------------------------------------------------------------------- /test/test-data/document/HeaderFooterUnicode.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/HeaderFooterUnicode.doc -------------------------------------------------------------------------------- /test/test-data/document/HeaderFooterUnicode.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/HeaderFooterUnicode.docx -------------------------------------------------------------------------------- /test/test-data/document/HeaderWithMacros.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/HeaderWithMacros.doc -------------------------------------------------------------------------------- /test/test-data/document/Headers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Headers.docx -------------------------------------------------------------------------------- /test/test-data/document/IllustrativeCases.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/IllustrativeCases.docx -------------------------------------------------------------------------------- /test/test-data/document/ListEntryNoListTable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ListEntryNoListTable.doc -------------------------------------------------------------------------------- /test/test-data/document/Lists.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Lists.doc -------------------------------------------------------------------------------- /test/test-data/document/MarkAuthorsTable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/MarkAuthorsTable.doc -------------------------------------------------------------------------------- /test/test-data/document/NoHeadFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/NoHeadFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/NoHeadFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/NoHeadFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/Numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Numbering.docx -------------------------------------------------------------------------------- /test/test-data/document/NumberingWOverrides.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/NumberingWOverrides.docx -------------------------------------------------------------------------------- /test/test-data/document/PageSpecificHeadFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/PageSpecificHeadFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/PageSpecificHeadFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/PageSpecificHeadFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/PasswordProtected.doc -------------------------------------------------------------------------------- /test/test-data/document/PngPicture.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/PngPicture.doc -------------------------------------------------------------------------------- /test/test-data/document/ProblemExtracting.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ProblemExtracting.doc -------------------------------------------------------------------------------- /test/test-data/document/SampleDoc.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/SampleDoc.doc -------------------------------------------------------------------------------- /test/test-data/document/SampleDoc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/SampleDoc.docx -------------------------------------------------------------------------------- /test/test-data/document/SimpleHeadThreeColFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/SimpleHeadThreeColFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/Styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Styles.docx -------------------------------------------------------------------------------- /test/test-data/document/TestDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/TestDocument.docx -------------------------------------------------------------------------------- /test/test-data/document/ThreeColFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/ThreeColFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/ThreeColHead.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColHead.doc -------------------------------------------------------------------------------- /test/test-data/document/ThreeColHead.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColHead.docx -------------------------------------------------------------------------------- /test/test-data/document/ThreeColHeadFoot.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColHeadFoot.doc -------------------------------------------------------------------------------- /test/test-data/document/ThreeColHeadFoot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ThreeColHeadFoot.docx -------------------------------------------------------------------------------- /test/test-data/document/Tika-792.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Tika-792.docx -------------------------------------------------------------------------------- /test/test-data/document/VariousPictures.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/VariousPictures.docx -------------------------------------------------------------------------------- /test/test-data/document/WithArtShapes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/WithArtShapes.doc -------------------------------------------------------------------------------- /test/test-data/document/WithGIF.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/WithGIF.docx -------------------------------------------------------------------------------- /test/test-data/document/WithTabs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/WithTabs.docx -------------------------------------------------------------------------------- /test/test-data/document/Word6.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Word6.doc -------------------------------------------------------------------------------- /test/test-data/document/Word6_sections.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Word6_sections.doc -------------------------------------------------------------------------------- /test/test-data/document/Word6_sections2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Word6_sections2.doc -------------------------------------------------------------------------------- /test/test-data/document/Word95.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/Word95.doc -------------------------------------------------------------------------------- /test/test-data/document/WordWithAttachments.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/WordWithAttachments.docx -------------------------------------------------------------------------------- /test/test-data/document/abstract1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/abstract1.jpg -------------------------------------------------------------------------------- /test/test-data/document/abstract2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/abstract2.jpg -------------------------------------------------------------------------------- /test/test-data/document/abstract3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/abstract3.jpg -------------------------------------------------------------------------------- /test/test-data/document/abstract4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/abstract4.jpg -------------------------------------------------------------------------------- /test/test-data/document/bookmarks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/bookmarks.docx -------------------------------------------------------------------------------- /test/test-data/document/checkboxes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/checkboxes.docx -------------------------------------------------------------------------------- /test/test-data/document/delins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/delins.docx -------------------------------------------------------------------------------- /test/test-data/document/documentProperties.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/documentProperties.doc -------------------------------------------------------------------------------- /test/test-data/document/documentProperties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/documentProperties.docx -------------------------------------------------------------------------------- /test/test-data/document/drawing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/drawing.docx -------------------------------------------------------------------------------- /test/test-data/document/empty.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/empty.doc -------------------------------------------------------------------------------- /test/test-data/document/endingnote.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/endingnote.doc -------------------------------------------------------------------------------- /test/test-data/document/endnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/endnotes.docx -------------------------------------------------------------------------------- /test/test-data/document/equation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/equation.doc -------------------------------------------------------------------------------- /test/test-data/document/footnote.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/footnote.doc -------------------------------------------------------------------------------- /test/test-data/document/footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/footnotes.docx -------------------------------------------------------------------------------- /test/test-data/document/form_footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/form_footnotes.docx -------------------------------------------------------------------------------- /test/test-data/document/headerFooter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/headerFooter.docx -------------------------------------------------------------------------------- /test/test-data/document/headerPic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/headerPic.docx -------------------------------------------------------------------------------- /test/test-data/document/header_image.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/header_image.doc -------------------------------------------------------------------------------- /test/test-data/document/heading123.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/heading123.docx -------------------------------------------------------------------------------- /test/test-data/document/hyperlink.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/hyperlink.doc -------------------------------------------------------------------------------- /test/test-data/document/innertable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/innertable.doc -------------------------------------------------------------------------------- /test/test-data/document/issue_51265_1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/issue_51265_1.docx -------------------------------------------------------------------------------- /test/test-data/document/issue_51265_2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/issue_51265_2.docx -------------------------------------------------------------------------------- /test/test-data/document/issue_51265_3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/issue_51265_3.docx -------------------------------------------------------------------------------- /test/test-data/document/lists-margins.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/lists-margins.doc -------------------------------------------------------------------------------- /test/test-data/document/nature1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature1.gif -------------------------------------------------------------------------------- /test/test-data/document/nature1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature1.jpg -------------------------------------------------------------------------------- /test/test-data/document/nature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature1.png -------------------------------------------------------------------------------- /test/test-data/document/nature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature2.jpg -------------------------------------------------------------------------------- /test/test-data/document/nature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature3.jpg -------------------------------------------------------------------------------- /test/test-data/document/nature4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/nature4.jpg -------------------------------------------------------------------------------- /test/test-data/document/o_kurs.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/o_kurs.doc -------------------------------------------------------------------------------- /test/test-data/document/ob_is.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/ob_is.doc -------------------------------------------------------------------------------- /test/test-data/document/page-break-before.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/page-break-before.doc -------------------------------------------------------------------------------- /test/test-data/document/page-break.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/page-break.doc -------------------------------------------------------------------------------- /test/test-data/document/pageref.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/pageref.doc -------------------------------------------------------------------------------- /test/test-data/document/parentinvguid.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/parentinvguid.doc -------------------------------------------------------------------------------- /test/test-data/document/picture.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/picture.doc -------------------------------------------------------------------------------- /test/test-data/document/pictures_escher.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/pictures_escher.doc -------------------------------------------------------------------------------- /test/test-data/document/protected_sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/protected_sample.docx -------------------------------------------------------------------------------- /test/test-data/document/rasp.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/rasp.doc -------------------------------------------------------------------------------- /test/test-data/document/sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/sample.docx -------------------------------------------------------------------------------- /test/test-data/document/saved-by-table.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/saved-by-table.doc -------------------------------------------------------------------------------- /test/test-data/document/simple-list.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple-list.doc -------------------------------------------------------------------------------- /test/test-data/document/simple-table.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple-table.doc -------------------------------------------------------------------------------- /test/test-data/document/simple-table2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple-table2.doc -------------------------------------------------------------------------------- /test/test-data/document/simple.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple.doc -------------------------------------------------------------------------------- /test/test-data/document/simple_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple_image.jpg -------------------------------------------------------------------------------- /test/test-data/document/simple_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/simple_image.png -------------------------------------------------------------------------------- /test/test-data/document/smarttag-snippet.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/smarttag-snippet.docx -------------------------------------------------------------------------------- /test/test-data/document/table-merges.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/table-merges.doc -------------------------------------------------------------------------------- /test/test-data/document/table_footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/table_footnotes.docx -------------------------------------------------------------------------------- /test/test-data/document/test-fields.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/test-fields.doc -------------------------------------------------------------------------------- /test/test-data/document/test.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/test.doc -------------------------------------------------------------------------------- /test/test-data/document/test.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/test.dotx -------------------------------------------------------------------------------- /test/test-data/document/test2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/test2.doc -------------------------------------------------------------------------------- /test/test-data/document/testCroppedPictures.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/testCroppedPictures.doc -------------------------------------------------------------------------------- /test/test-data/document/testPictures.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/testPictures.doc -------------------------------------------------------------------------------- /test/test-data/document/testRangeDelete.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/testRangeDelete.doc -------------------------------------------------------------------------------- /test/test-data/document/testRangeInsertion.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/testRangeInsertion.doc -------------------------------------------------------------------------------- /test/test-data/document/testRangeReplacement.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/testRangeReplacement.doc -------------------------------------------------------------------------------- /test/test-data/document/two_images.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/two_images.doc -------------------------------------------------------------------------------- /test/test-data/document/vector_image.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/vector_image.doc -------------------------------------------------------------------------------- /test/test-data/document/vector_image.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/vector_image.emf -------------------------------------------------------------------------------- /test/test-data/document/watermark.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/watermark.doc -------------------------------------------------------------------------------- /test/test-data/document/word95err.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/word95err.doc -------------------------------------------------------------------------------- /test/test-data/document/word_with_embeded.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/word_with_embeded.doc -------------------------------------------------------------------------------- /test/test-data/document/zero-length.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/document/zero-length.docx -------------------------------------------------------------------------------- /test/test-data/hpsf/Test0313rur.adm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/Test0313rur.adm -------------------------------------------------------------------------------- /test/test-data/hpsf/TestBug44375.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestBug44375.xls -------------------------------------------------------------------------------- /test/test-data/hpsf/TestChineseProperties.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestChineseProperties.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestCorel.shw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestCorel.shw -------------------------------------------------------------------------------- /test/test-data/hpsf/TestEditTime.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestEditTime.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestGermanWord90.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestGermanWord90.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestMickey.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestMickey.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestNon4ByteBoundary.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestNon4ByteBoundary.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestRobert_Flaherty.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestRobert_Flaherty.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestSectionDictionary.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestSectionDictionary.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestShiftJIS.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestShiftJIS.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestSolidWorks.sldprt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestSolidWorks.sldprt -------------------------------------------------------------------------------- /test/test-data/hpsf/TestThumbnail.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestThumbnail.xls -------------------------------------------------------------------------------- /test/test-data/hpsf/TestUnicode.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestUnicode.xls -------------------------------------------------------------------------------- /test/test-data/hpsf/TestVisioWithCodepage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestVisioWithCodepage.vsd -------------------------------------------------------------------------------- /test/test-data/hpsf/TestWriteWellKnown.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestWriteWellKnown.doc -------------------------------------------------------------------------------- /test/test-data/hpsf/TestZeroLengthCodePage.mpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/TestZeroLengthCodePage.mpp -------------------------------------------------------------------------------- /test/test-data/hpsf/Test_Humor-Generation.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/hpsf/Test_Humor-Generation.ppt -------------------------------------------------------------------------------- /test/test-data/openxml4j/50154.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/50154.xlsx -------------------------------------------------------------------------------- /test/test-data/openxml4j/51444.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/51444.xlsx -------------------------------------------------------------------------------- /test/test-data/openxml4j/53282.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/53282.xlsx -------------------------------------------------------------------------------- /test/test-data/openxml4j/ExcelWithHyperlinks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/ExcelWithHyperlinks.xlsx -------------------------------------------------------------------------------- /test/test-data/openxml4j/TestOpenPackageINPUT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/TestOpenPackageINPUT.docx -------------------------------------------------------------------------------- /test/test-data/openxml4j/TestPackageCommon.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/TestPackageCommon.docx -------------------------------------------------------------------------------- /test/test-data/openxml4j/TestPackageThumbnail.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/TestPackageThumbnail.docx -------------------------------------------------------------------------------- /test/test-data/openxml4j/sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/sample.docx -------------------------------------------------------------------------------- /test/test-data/openxml4j/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/sample.xlsx -------------------------------------------------------------------------------- /test/test-data/openxml4j/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/openxml4j/thumbnail.jpg -------------------------------------------------------------------------------- /test/test-data/poifs/20-Force-on-a-current-S00.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/20-Force-on-a-current-S00.doc -------------------------------------------------------------------------------- /test/test-data/poifs/BlockSize4096.zvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/BlockSize4096.zvi -------------------------------------------------------------------------------- /test/test-data/poifs/BlockSize512.zvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/BlockSize512.zvi -------------------------------------------------------------------------------- /test/test-data/poifs/Notes.ole2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/Notes.ole2 -------------------------------------------------------------------------------- /test/test-data/poifs/ReferencesInvalidSectors.mpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/ReferencesInvalidSectors.mpp -------------------------------------------------------------------------------- /test/test-data/poifs/ShortLastBlock.qwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/ShortLastBlock.qwp -------------------------------------------------------------------------------- /test/test-data/poifs/ShortLastBlock.wps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/ShortLastBlock.wps -------------------------------------------------------------------------------- /test/test-data/poifs/extenxls_pwd123.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/extenxls_pwd123.xlsx -------------------------------------------------------------------------------- /test/test-data/poifs/multimedia.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/multimedia.doc -------------------------------------------------------------------------------- /test/test-data/poifs/oleObject1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/oleObject1.bin -------------------------------------------------------------------------------- /test/test-data/poifs/only-zero-byte-streams.ole2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/only-zero-byte-streams.ole2 -------------------------------------------------------------------------------- /test/test-data/poifs/protect.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/protect.xlsx -------------------------------------------------------------------------------- /test/test-data/poifs/protected_agile.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/protected_agile.docx -------------------------------------------------------------------------------- /test/test-data/poifs/protected_sha512.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/protected_sha512.xlsx -------------------------------------------------------------------------------- /test/test-data/poifs/unknown_properties.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/poifs/unknown_properties.msg -------------------------------------------------------------------------------- /test/test-data/publisher/51318.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/51318.pub -------------------------------------------------------------------------------- /test/test-data/publisher/LinkAt0And10.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/LinkAt0And10.pub -------------------------------------------------------------------------------- /test/test-data/publisher/LinkAt10.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/LinkAt10.pub -------------------------------------------------------------------------------- /test/test-data/publisher/LinkAt10And20And30.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/LinkAt10And20And30.pub -------------------------------------------------------------------------------- /test/test-data/publisher/LinkAt10Longer.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/LinkAt10Longer.pub -------------------------------------------------------------------------------- /test/test-data/publisher/LinkAt20.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/LinkAt20.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample2.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample2.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample2000.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample2000.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample2_2010.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample2_2010.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample3.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample3.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample3_2010.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample3_2010.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample4.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample4.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample4_2010.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample4_2010.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample98.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample98.pub -------------------------------------------------------------------------------- /test/test-data/publisher/SampleBrochure.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/SampleBrochure.pub -------------------------------------------------------------------------------- /test/test-data/publisher/SampleNewsletter.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/SampleNewsletter.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Sample_2010.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Sample_2010.pub -------------------------------------------------------------------------------- /test/test-data/publisher/Simple.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/publisher/Simple.pub -------------------------------------------------------------------------------- /test/test-data/slideshow/38256.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/38256.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/41071.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/41071.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/41384.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/41384.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/42474-1.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/42474-1.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/42474-2.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/42474-2.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/42485.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/42485.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/42486.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/42486.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/42520.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/42520.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/43781.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/43781.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/44296.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/44296.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/44770.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/44770.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/45537_Footer.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45537_Footer.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/45537_Header.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45537_Header.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/45541_Footer.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45541_Footer.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/45541_Header.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45541_Header.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/45543.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45543.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/45545_Comment.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/45545_Comment.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/47261.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/47261.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/49386-null_dates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/49386-null_dates.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/49648.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/49648.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/51187.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/51187.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/51731.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/51731.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/52244.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/52244.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/52599.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/52599.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/53446.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/53446.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/54111.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/54111.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/PPT95.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/PPT95.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/PPTWithAttachments.pptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/PPTWithAttachments.pptm -------------------------------------------------------------------------------- /test/test-data/slideshow/PictureTypeZero.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/PictureTypeZero.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/SampleShow.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/SampleShow.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/SampleShow.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/SampleShow.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/Single_Coloured_Page.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/Single_Coloured_Page.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/WithComments.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/WithComments.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/WithLinks.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/WithLinks.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/WithMacros.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/WithMacros.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/WithMaster.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/WithMaster.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/WithMaster.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/WithMaster.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/alterman_security.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/alterman_security.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/backgrounds.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/backgrounds.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/backgrounds.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/backgrounds.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/badzip.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/badzip.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/basic_test_ppt_file.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/basic_test_ppt_file.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/bug-41015.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/bug-41015.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/bullets.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/bullets.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/clock.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/clock.dib -------------------------------------------------------------------------------- /test/test-data/slideshow/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/clock.jpg -------------------------------------------------------------------------------- /test/test-data/slideshow/cow.pict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/cow.pict -------------------------------------------------------------------------------- /test/test-data/slideshow/empty.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/empty.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/empty_textbox.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/empty_textbox.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/headers_footers.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/headers_footers.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/headers_footers_2007.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/headers_footers_2007.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/iisd_report.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/iisd_report.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/incorrect_slide_order.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/incorrect_slide_order.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/layouts.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/layouts.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/master_text.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/master_text.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/missing_core_records.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/missing_core_records.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/next_test_ppt_file.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/next_test_ppt_file.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/numbers.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/numbers.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/numbers2.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/numbers2.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/numbers3.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/numbers3.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/ole2-embedding-2003.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/ole2-embedding-2003.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/painting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/painting.png -------------------------------------------------------------------------------- /test/test-data/slideshow/pictures.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/pictures.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/pie-chart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/pie-chart.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/ppt_with_embeded.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/ppt_with_embeded.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/ppt_with_png.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/ppt_with_png.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/pptx2svg.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/pptx2svg.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/prProps.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/prProps.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/present1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/present1.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/ringin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/ringin.wav -------------------------------------------------------------------------------- /test/test-data/slideshow/sample.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/sample.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/santa.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/santa.wmf -------------------------------------------------------------------------------- /test/test-data/slideshow/sci_cec.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/sci_cec.dib -------------------------------------------------------------------------------- /test/test-data/slideshow/shapes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/shapes.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/slide_master.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/slide_master.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/sound.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/sound.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.ppsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.ppsm -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.ppsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.ppsx -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.pptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.pptm -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.thmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.thmx -------------------------------------------------------------------------------- /test/test-data/slideshow/testPPT.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/testPPT.xps -------------------------------------------------------------------------------- /test/test-data/slideshow/text-margins.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/text-margins.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/text_shapes.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/text_shapes.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/themes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/themes.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/tomcat.png -------------------------------------------------------------------------------- /test/test-data/slideshow/with_japanese.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/with_japanese.pptx -------------------------------------------------------------------------------- /test/test-data/slideshow/with_textbox.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/with_textbox.ppt -------------------------------------------------------------------------------- /test/test-data/slideshow/wrench.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/slideshow/wrench.emf -------------------------------------------------------------------------------- /test/test-data/spreadsheet/12561-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/12561-1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/12561-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/12561-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/12843-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/12843-1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/12843-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/12843-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/13224.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/13224.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/13796.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/13796.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/14330-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/14330-1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/14330-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/14330-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/14460.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/14460.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/15228.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/15228.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/15375.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/15375.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/15556.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/15556.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/15573.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/15573.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/1900DateWindowing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/1900DateWindowing.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/1904DateWindowing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/1904DateWindowing.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/19599-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/19599-1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/19599-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/19599-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/22742.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/22742.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/24207.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/24207.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/24215.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/24215.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/25183.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/25183.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/25695.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/25695.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/26100.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/26100.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27272_1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27272_1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27272_2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27272_2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27364.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27364.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27394.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27394.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27852.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27852.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/27933.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/27933.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/28772.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/28772.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/28774.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/28774.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/29675.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/29675.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/29942.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/29942.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/29982.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/29982.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/30070.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/30070.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/30540.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/30540.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/30978-alt.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/30978-alt.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/30978-deleted.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/30978-deleted.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/31661.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/31661.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/31749.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/31749.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/31979.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/31979.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/32822.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/32822.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/33082.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/33082.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/34775.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/34775.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/35564.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/35564.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/35565.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/35565.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/35897-type4.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/35897-type4.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/36947.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/36947.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/37376.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/37376.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/37630.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/37630.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/37684-1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/37684-1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/37684-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/37684-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/37684.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/37684.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/39234.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/39234.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/39512.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/39512.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/39634.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/39634.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/3dFormulas.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/3dFormulas.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/40285.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/40285.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/41139.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/41139.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/41546.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/41546.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/42016.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/42016.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/42464-ExpPtg-bad.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/42464-ExpPtg-bad.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/42464-ExpPtg-ok.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/42464-ExpPtg-ok.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/42726.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/42726.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/42844.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/42844.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/43251.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/43251.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/43493.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/43493.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/43623.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/43623.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/43902.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/43902.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44010-SingleChart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44010-SingleChart.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44010-TwoCharts.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44010-TwoCharts.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44167.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44167.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44200.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44200.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44201.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44201.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44235.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44235.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44297.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44297.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44593.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44593.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44636.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44636.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44643.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44643.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44693.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44693.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44840.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44840.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44861.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44861.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44891.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44891.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44958.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44958.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/44958_1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/44958_1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45129.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45129.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45290.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45290.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45322.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45322.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45365-2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45365-2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45365.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45365.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45430.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45430.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45431.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45431.xlsm -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45492.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45492.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45538_form_Footer.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45538_form_Footer.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45538_form_Header.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45538_form_Header.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45540_form_Footer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45540_form_Footer.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45540_form_Header.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45540_form_Header.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45544.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45544.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45672.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45672.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45720.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45720.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45761.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45761.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45784.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45784.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/45829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/45829.png -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46136-NoWarnings.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46136-NoWarnings.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46136-WithWarnings.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46136-WithWarnings.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46137.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46137.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46250.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46250.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46368.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46368.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46445.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46445.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46535.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46535.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46536.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46536.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46670_http.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46670_http.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46670_local.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46670_local.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46670_ref_airline.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46670_ref_airline.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/46904.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/46904.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47026.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47026.xlsm -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47034.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47034.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47089.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47089.xlsm -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47090.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47090.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47154.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47154.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47251.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47251.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47251_1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47251_1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47504.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47504.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47668.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47668.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47701.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47701.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47737.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47737.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47804.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47804.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47813.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47813.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47847.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47847.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47862.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47862.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47889.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47889.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47920.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47920.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/47924.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/47924.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48026.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48026.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48180.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48180.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48325.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48325.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48495.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48495.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48539.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48539.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48703.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48703.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48703.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48703.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48779.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48779.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48923.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48923.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/48968.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/48968.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49096.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49096.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49156.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49156.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49185.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49185.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49219.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49219.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49237.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49237.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49273.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49273.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49325.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49325.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49423.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49423.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49524.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49524.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49529.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49529.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49581.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49581.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49609.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49609.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49612.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49612.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49751.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49751.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49761.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49761.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49783.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49783.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49872.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49872.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49896.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49896.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49928.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49928.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49928.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49928.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49931.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49931.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/49966.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/49966.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50020.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50020.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50096.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50096.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50298.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50298.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50299.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50299.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50426.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50426.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50756.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50756.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50779_1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50779_1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50779_2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50779_2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50795.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50795.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50833.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50833.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50867_with_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50867_with_table.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/50939.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/50939.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51143.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51143.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51222.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51222.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51461.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51461.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51470.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51470.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51498.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51498.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51535.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51535.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51585.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51585.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51670.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51670.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51675.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51675.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51710.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51710.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51832.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51832.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51850.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51850.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/51963.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/51963.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52348.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52348.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52527.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52527.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52575_main.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52575_main.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52575_main.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52575_main.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52575_source.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52575_source.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/52716.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/52716.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53101.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53101.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53109.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53109.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53282.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53282.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53282b.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53282b.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53404.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53404.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53433.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53433.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53446.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53446.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53568.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53568.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53588.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53588.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53691.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53691.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53734.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53734.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53798.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53798.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53972.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53972.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/53984.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/53984.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54016.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54016.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54034.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54034.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54071.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54071.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54084 - Greek - beyond BMP.txt: -------------------------------------------------------------------------------- 1 | 𝝊𝝋𝝌𝝍𝝎𝝏𝝐𝝑𝝒𝝓𝝔𝝕𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮𝝯𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺 2 | -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54206.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54206.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54206.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54206.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54288-ref.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54288-ref.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54288.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54288.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54436.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54436.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54500.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54500.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54524.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54524.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54607.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54607.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54764-2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54764-2.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/54764.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/54764.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55640.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55640.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55745.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55745.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55850.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55850.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55864.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55864.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55923.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55923.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55924.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55924.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55926.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55926.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/55927.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/55927.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56011.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56011.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56017.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56017.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56169.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56169.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56170.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56170.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56274.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56274.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56278.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56278.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56295.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56295.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56315.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56315.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56325.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56325.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56325a.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56325a.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56420.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56420.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56450.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56450.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56482.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56482.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56502.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56502.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56511.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56511.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56514.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56514.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56563a.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56563a.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56563b.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56563b.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56574.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56574.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56644.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56644.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56688_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56688_1.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56688_2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56688_2.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56688_3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56688_3.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56688_4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56688_4.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56702.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56702.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56730.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56730.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56737.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56737.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/56737.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/56737.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57074.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57074.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57163.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57163.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57171_57163_57165.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57171_57163_57165.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57176.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57176.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57196.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57196.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57236.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57236.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57362.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57362.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57423.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57423.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57456.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57456.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57482-OnlyNumeric.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57482-OnlyNumeric.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57535.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57535.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57826.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57826.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/57828.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/57828.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/AreaErrPtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/AreaErrPtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/AverageTaxRates.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/AverageTaxRates.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/BOOK_in_capitals.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/BOOK_in_capitals.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Booleans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Booleans.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/BrNotClosed.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/BrNotClosed.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ColumnStyle1dp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ColumnStyle1dp.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ColumnStyleNone.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ColumnStyleNone.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/CustomXMLMappings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/CustomXMLMappings.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DBCSHeader.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DBCSHeader.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DBCSSheetName.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DBCSSheetName.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DGet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DGet.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DStar.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DStar.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DateFormatTests.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DateFormatTests.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DateFormats.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DateFormats.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/DrawingContinue.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/DrawingContinue.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Employee.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Employee.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ErrPtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ErrPtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ForShifting.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ForShifting.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ForShifting.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ForShifting.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/FormatChoiceTests.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/FormatChoiceTests.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Formatting.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Formatting.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Formatting.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Formatting.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/FormulaRefs.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/FormulaRefs.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/FormulaSheetRange.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/FormulaSheetRange.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/GroupTest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/GroupTest.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/IfFormulaTest.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/IfFormulaTest.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Images.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Images.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/InlineStrings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/InlineStrings.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/IntersectionPtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/IntersectionPtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/MRExtraLines.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/MRExtraLines.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/MissingBits.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/MissingBits.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/NoGutsRecords.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/NoGutsRecords.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/NpoiBug5139.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/NpoiBug5139.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/OddStyleRecord.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/OddStyleRecord.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/PercentPtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/PercentPtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/RangePtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/RangePtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ReferencePtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ReferencePtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/RepeatingRowsCols.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/RepeatingRowsCols.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SampleSS.strict.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SampleSS.strict.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SampleSS.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SampleSS.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SampleSS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SampleSS.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SharedFormulaTest.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SharedFormulaTest.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SheetWithDrawing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SheetWithDrawing.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ShrinkToFit.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ShrinkToFit.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ShrinkToFit.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ShrinkToFit.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Simple.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Simple.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Simple.xlsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Simple.xlsb -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleChart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleChart.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleMultiCell.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleMultiCell.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleMultiCell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleMultiCell.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleNormal.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleNormal.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleStrict.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleStrict.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithChoose.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithChoose.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithColours.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithColours.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithFormula.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithFormula.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithImages.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithImages.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithSkip.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithSkip.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SimpleWithStyling.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SimpleWithStyling.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SquareMacro.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SquareMacro.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/StringFormulas.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/StringFormulas.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/SubtotalsNested.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/SubtotalsNested.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Tables.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Tables.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/TestRandBetween.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/TestRandBetween.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/TextFormatTests.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/TextFormatTests.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/Themes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/Themes.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/UncalcedRecord.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/UncalcedRecord.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/UnionPtg.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/UnionPtg.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithChart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithChart.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithChart.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithChartSheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithChartSheet.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithCheckBoxes.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithCheckBoxes.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithDrawing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithDrawing.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithEmbeded.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithEmbeded.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithHyperlink.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithHyperlink.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTable.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTextBox.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTextBox.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTextBox2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTextBox2.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithThreeCharts.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithThreeCharts.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithThreeCharts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithThreeCharts.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTwoCharts.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTwoCharts.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTwoCharts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTwoCharts.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithTwoHyperLinks.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithTwoHyperLinks.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/WithVariousData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/WithVariousData.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/XRefCalc.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/XRefCalc.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/XRefCalcData.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/XRefCalcData.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/atp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/atp.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/atp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/atp.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/blankworkbook.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/blankworkbook.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/bug_42794.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/bug_42794.mdb -------------------------------------------------------------------------------- /test/test-data/spreadsheet/bug_42794.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/bug_42794.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/chart_sheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/chart_sheet.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/chartdemo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/chartdemo.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/colwidth.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/colwidth.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/commentTest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/commentTest.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/comments.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/comments.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/comments.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/comments.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/countifExamples.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/countifExamples.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/dg-text.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/dg-text.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/drawings.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/drawings.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/duprich1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/duprich1.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/duprich2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/duprich2.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/dvEmpty.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/dvEmpty.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/empty.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/empty.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex41187-19267.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex41187-19267.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex42564-21435.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex42564-21435.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex42564-21503.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex42564-21503.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex42570-20305.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex42570-20305.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex44921-21902.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex44921-21902.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex45046-21984.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex45046-21984.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex45582-22397.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex45582-22397.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex45672.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex45672.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex45698-22488.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex45698-22488.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ex46548-23133.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ex46548-23133.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/excelant.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/excelant.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/finance.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/finance.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/headerFooterTest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/headerFooterTest.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/intercept.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/intercept.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/logoKarmokar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/logoKarmokar4.png -------------------------------------------------------------------------------- /test/test-data/spreadsheet/mirrTest.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/mirrTest.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/missingFuncs44675.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/missingFuncs44675.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/multibookFormulaA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/multibookFormulaA.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/multibookFormulaB.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/multibookFormulaB.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/namedinput.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/namedinput.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/npoiBug5010.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/npoiBug5010.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ole2-embedding.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ole2-embedding.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/password.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/password.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/picture.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/picture.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/rank.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/rank.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ref-56737.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ref-56737.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/ref2-56737.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/ref2-56737.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/reordered_sheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/reordered_sheets.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/resize_compare.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/resize_compare.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/resize_compare.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/resize_compare.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/rk.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/rk.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/sample-beta.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/sample-beta.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/sample.strict.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/sample.strict.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/sample.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/shared_formulas.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/shared_formulas.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/shared_formulas.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/shared_formulas.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/styles.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/styles.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/sumifformula.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/sumifformula.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/sumifs.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/sumifs.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/test.xltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/test.xltx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testEXCEL_3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testEXCEL_3.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testEXCEL_4.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testEXCEL_4.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testEXCEL_5.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testEXCEL_5.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testEXCEL_95.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testEXCEL_95.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testNames.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testNames.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testRRaC.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testRRaC.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/testRVA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/testRVA.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/text.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/text.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/unicodeNameRecord.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/unicodeNameRecord.xls -------------------------------------------------------------------------------- /test/test-data/spreadsheet/xlsx-jdbc.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/xlsx-jdbc.xlsx -------------------------------------------------------------------------------- /test/test-data/spreadsheet/yearfracExamples.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/NPOI/9fc667e32476f1a251730141df12e1927349c75c/test/test-data/spreadsheet/yearfracExamples.xls --------------------------------------------------------------------------------