├── .gitignore ├── Examples ├── .classpath ├── .gitignore ├── .project ├── README.md ├── libs │ ├── jai_codec-1.1.3.jar │ ├── jai_core-1.1.3.jar │ └── jai_imageio-1.1.jar ├── msaccesslibs │ ├── commons-lang-2.6.jar │ ├── commons-logging-1.1.1.jar │ ├── hsqldb.jar │ ├── jackcess-2.1.6.jar │ └── ucanaccess-4.0.2.jar ├── pom.xml └── src │ ├── AsposeCellsExamples │ ├── CellsHelperClass │ │ ├── CreateSafeSheetNames.java │ │ ├── GetTextWidth.java │ │ ├── MergeFiles.java │ │ └── SignificantDigits.java │ ├── Charts │ │ ├── AddingLabelControl.java │ │ ├── AddingPictureToChart.java │ │ ├── AddingTextBoxControl.java │ │ ├── Applying3DFormat.java │ │ ├── ApplyingThemes.java │ │ ├── ChangeChartPosition.java │ │ ├── ChangeChartPositionAndSize.java │ │ ├── ChangeTickLabelDirection.java │ │ ├── ChartRendering.java │ │ ├── CreateChart.java │ │ ├── CreateChartPDFWithDesiredPageSize.java │ │ ├── CreateLineWithDataMarkerChart.java │ │ ├── FindTypeOfXandYValuesOfPointsInChartSeries.java │ │ ├── GetChartSubTitleForODSFile.java │ │ ├── HandleAutomaticUnitsOfChartAxisLikeMicrosoftExcel.java │ │ ├── HowToCreateBubbleChart.java │ │ ├── HowToCreateChart.java │ │ ├── HowToCreateCustomChart.java │ │ ├── HowToCreateLineChart.java │ │ ├── HowToCreatePieChart.java │ │ ├── HowToCreatePyramidChart.java │ │ ├── InsertCheckboxInChartSheet.java │ │ ├── MicrosoftTheme.java │ │ ├── ModifyLineChart.java │ │ ├── ModifyPieChart.java │ │ ├── ReadAxisLabelsAfterCalculatingTheChart.java │ │ ├── ReadManipulateExcel2016Charts.java │ │ ├── SetShapeTypeOfDataLabelsOfChart.java │ │ ├── SetValuesFormatCodeOfChartSeries.java │ │ ├── SettingCategoryData.java │ │ ├── SettingChartArea.java │ │ ├── SettingChartLines.java │ │ ├── SettingChartsData.java │ │ ├── SettingTitlesAxes.java │ │ └── UsingSparklines.java │ ├── Data │ │ ├── AccessAllNamedRanges.java │ │ ├── AccessSpecificNamedRange.java │ │ ├── AccessingMaximumDisplayRangeofWorksheet.java │ │ ├── AddValidationArea.java │ │ ├── AddingBordersToCells.java │ │ ├── AddingBorderstoRange.java │ │ ├── AddingDataToCells.java │ │ ├── AddingLinkToAnotherCell.java │ │ ├── AddingLinkToExternalFile.java │ │ ├── AddingLinkToURL.java │ │ ├── AddingLinkToURLNotEmpty.java │ │ ├── ApplyAdvancedFilterOfMicrosoftExcel.java │ │ ├── ApplyGradientFillEffects.java │ │ ├── AutofilterBeginsWith.java │ │ ├── AutofilterData.java │ │ ├── AutofilterEndsWith.java │ │ ├── ChangeCellsAlignmentAndKeepExistingFormatting.java │ │ ├── ChangeTextDirection.java │ │ ├── CheckCustomNumberFormat.java │ │ ├── CheckIfValidationInCellDropDown.java │ │ ├── ColorsAndBackground.java │ │ ├── ColorsAndPalette.java │ │ ├── ConditionalFormattingatRuntime.java │ │ ├── ConvertCellsAddresstoRangeorCellArea.java │ │ ├── CreateNamedRangeofCells.java │ │ ├── CreateUnionRange.java │ │ ├── CreatingSubtotals.java │ │ ├── DataFilteringBlank.java │ │ ├── DataFilteringCustomFilterWithContains.java │ │ ├── DataFilteringCustomFilterWithNotContains.java │ │ ├── DataFilteringNonBlank.java │ │ ├── DataSorting.java │ │ ├── DataSortingWithBackgroundColor.java │ │ ├── DateDataValidation.java │ │ ├── DecimalDataValidation.java │ │ ├── ExportingDataFromWorksheets.java │ │ ├── FindingCellsContainingFormula.java │ │ ├── FindingCellsEndWithSpecificCharacters.java │ │ ├── FindingCellsWithStringOrNumber.java │ │ ├── FindingwithRegularExpressions.java │ │ ├── FormatRanges1.java │ │ ├── FormatRanges2.java │ │ ├── FormattingAColumn.java │ │ ├── FormattingARow.java │ │ ├── FormattingCellsUsingStyleObject.java │ │ ├── FormattingCellsUsingsetStyleMethod.java │ │ ├── FormattingSelectedCharacters.java │ │ ├── GetAddressCellCountOffsetEntireColumnAndEntireRowOfTheRange.java │ │ ├── GetAllHiddenRowsIndicesAfterRefreshingAutoFilter.java │ │ ├── IdentifyCellsinNamedRange.java │ │ ├── ImportCustomObjectsToMergedArea.java │ │ ├── ImportDataFromMicrosoftAccessDatabaseResultSetObjectToWorksheet.java │ │ ├── ImportingFromArray.java │ │ ├── ImportingFromArrayList.java │ │ ├── ImportingFromJson.java │ │ ├── ImportingFromMultiDimensionalArray.java │ │ ├── Indentation.java │ │ ├── InputDataInCellsInRange.java │ │ ├── ListDataValidation.java │ │ ├── MakeCellActive.java │ │ ├── MergingCellsInWorksheet.java │ │ ├── NamedRangeToSumValues.java │ │ ├── Orientation.java │ │ ├── PreserveSingleQuotePrefixOfCellValueOrRange.java │ │ ├── RemoveANamedRange.java │ │ ├── RetrievingDataFromCells.java │ │ ├── SelectRangeofCellsinWorksheet.java │ │ ├── SetBorder.java │ │ ├── SetComplexFormulaforNamedRange.java │ │ ├── SetFontColor.java │ │ ├── SetFontSize.java │ │ ├── SetFontStyle.java │ │ ├── SetPattern.java │ │ ├── SetSimpleFormulaforNamedRange.java │ │ ├── SetSubscript.java │ │ ├── SetSuperscript.java │ │ ├── SettingDisplayFormat.java │ │ ├── SettingFontName.java │ │ ├── SettingFontStyle.java │ │ ├── SettingFontUnderlineType.java │ │ ├── SettingStrikeOutEffect.java │ │ ├── ShiftFirstRowDownWhenInsertingCellsDataTableRows.java │ │ ├── ShrinkingToFit.java │ │ ├── SortDataInColumnWithBackgroundColor.java │ │ ├── SortDataInColumnWithCustomSortList.java │ │ ├── SpecifyFormulaFieldsWhileImportingDataToWorksheet.java │ │ ├── SpecifyingDBNumCustomPatternFormatting.java │ │ ├── SpecifyingSortWarningWhileSortingData.java │ │ ├── TextAlignmentHorizontal.java │ │ ├── TextAlignmentVertical.java │ │ ├── TextLengthDataValidation.java │ │ ├── TimeDataValidation.java │ │ ├── UnMergingCellsInWorksheet.java │ │ ├── UsingCellName.java │ │ ├── UsingRowAndColumnIndexOfCell.java │ │ ├── WholeNumberDataValidation.java │ │ └── WrapText.java │ ├── DocumentProperties │ │ └── SpecifyLanguageOfExcelFileUsingBuiltInDocumentProperties.java │ ├── DrawingObjects │ │ ├── AbsolutePositioning.java │ │ ├── AccessAndModifyLabelOfOleObject.java │ │ ├── AddingArcControl.java │ │ ├── AddingButtonControl.java │ │ ├── AddingCheckBoxControl.java │ │ ├── AddingComboBoxControl.java │ │ ├── AddingLabelControl.java │ │ ├── AddingLineControl.java │ │ ├── AddingListBoxControl.java │ │ ├── AddingPictures.java │ │ ├── AddingRadioButtonControl.java │ │ ├── AddingRectangleControl.java │ │ ├── AddingTextBoxControl.java │ │ ├── AddinganArrowHead.java │ │ ├── AddinganOvalControl.java │ │ ├── ConvertSmartArtToGroupShape.java │ │ ├── DetermineIfShapeIsSmartArtShape.java │ │ ├── ExtractTextFromGearTypeSmartArtShape.java │ │ ├── ExtractingOLEObjects.java │ │ ├── GetShapeConnectionPoints.java │ │ ├── InsertingOLEObjects.java │ │ ├── ManipulatingTextBoxControls.java │ │ ├── NonPrimitiveShape.java │ │ ├── ReadColorGlowEffect.java │ │ ├── ReplaceTagWithTextInTextBox.java │ │ ├── ReplaceTextInSmartArt.java │ │ ├── RotateTextWithShapeInsideWorksheet.java │ │ ├── SendShapeFrontOrBackInWorksheet.java │ │ ├── SetMarginsOfCommentOrShapeInsideTheWorksheet.java │ │ ├── SpecifyFarEastAndLatinNameOfFontInTextOptionsOfShape.java │ │ ├── TextboxPartialTextAlignment.java │ │ └── TilePictureAsTextureInsideShape.java │ ├── Files │ │ └── Handling │ │ │ ├── OpeningFODSFiles.java │ │ │ ├── OpeningSXCFiles.java │ │ │ └── OpeningTSVFiles.java │ ├── Fonts │ │ ├── SetDefaultFontPropertyOfPdfSaveOptionsAndImageOrPrintOptions.java │ │ └── SpecifyIndividualOrPrivateSetOfFontsForWorkbookRendering.java │ ├── Formulas │ │ ├── AddCellsToMicrosoftExcelFormulaWatchWindow.java │ │ ├── CalculatingFormulas.java │ │ ├── CalculatingFormulasOnce.java │ │ ├── DirectCalculationFormula.java │ │ ├── InterruptOrCancelFormulaCalculationOfWorkbook.java │ │ ├── RegisterAndCallFuncFromAddIn.java │ │ └── SpecifyMaximumRowsOfSharedFormula.java │ ├── HTML │ │ ├── ExcludeUnusedStylesInExcelToHTML.java │ │ ├── ExportDocumentWorkbookAndWorksheetPropertiesInHTML.java │ │ ├── ExportPrintAreaToHtml.java │ │ ├── ExportSimilarBorderStyle.java │ │ ├── ExportWorksheetCSSSeparatelyInOutputHTML.java │ │ ├── GetHTML5StringFromCell.java │ │ ├── HidingOverlaidContentWithCrossHideRightWhileSavingToHtml.java │ │ ├── PrefixTableElementsStylesWithHtmlSaveOptions_TableCssIdProperty.java │ │ ├── PrintHeadings.java │ │ ├── RecognizeSelfClosingTags.java │ │ ├── SetScalableColumnWidth.java │ │ └── SetSingleSheetTabNameInHtml.java │ ├── HelperClasses │ │ ├── DataObject.java │ │ └── Product.java │ ├── Introduction │ │ ├── CheckVersionNumberOfComponent.java │ │ ├── CreatingWorkbook.java │ │ ├── IndexToName.java │ │ ├── NameToIndex.java │ │ └── OpeningExistingFile.java │ ├── LoadingSavingConvertingAndManaging │ │ ├── AdvancedConversiontoPdf.java │ │ ├── AutoFitColumnsRowsLoadingHTML.java │ │ ├── CircularMonitor.java │ │ ├── ContentCopyForAccessibilityOption.java │ │ ├── ConvertActiveWorksheetToSVG.java │ │ ├── ConvertCsvToJson.java │ │ ├── ConvertExcelFileToHtmlWithTooltip.java │ │ ├── ConvertExcelFileToMarkdown.java │ │ ├── ConvertExcelFileToPDFA_1a.java │ │ ├── ConvertJsonToCsv.java │ │ ├── ConvertingToHTMLFiles.java │ │ ├── ConvertingToMHTMLFiles.java │ │ ├── ConvertingToXPS.java │ │ ├── ConvertingWorksheetToSVG.java │ │ ├── ConvertingsingleWorksheetToXPS.java │ │ ├── DisableDownlevelRevealedCommentsWhileSavingToHTML.java │ │ ├── DocumentConversionProgress.java │ │ ├── DocumentConversionProgressForTiff.java │ │ ├── EncryptingFiles.java │ │ ├── EncryptingODSFiles.java │ │ ├── ExportCommentsWhileSavingExcelFileToHtml.java │ │ ├── ExportCustomPropertiesToPDF.java │ │ ├── ExportWholeWorkbookToXPS.java │ │ ├── GetWarningLoadingAnExcel.java │ │ ├── KeepSeparatorsForBlankRow.java │ │ ├── OpeningCSVFiles.java │ │ ├── OpeningCSVFilesAndReplacingInvalidCharacters.java │ │ ├── OpeningCSVFilesWithPreferredParser.java │ │ ├── OpeningEncryptedExcelFiles.java │ │ ├── OpeningExcel95_5_0XLSFiles.java │ │ ├── OpeningFilesThroughPath.java │ │ ├── OpeningFilesThroughStream.java │ │ ├── OpeningMicrosoftExcel2007XlsxFiles.java │ │ ├── OpeningMicrosoftExcel972003Files.java │ │ ├── OpeningSpreadsheetMLFiles.java │ │ ├── OpeningTabDelimitedFiles.java │ │ ├── QuickExcelToXPSConversion.java │ │ ├── ReadNumbersSpreadsheet.java │ │ ├── SaveInPdfFormat.java │ │ ├── SaveWorkbookToStrictOpenXMLSpreadsheetFormat.java │ │ ├── SaveWorkbookToTextCSVFormat.java │ │ ├── SaveXLSFile.java │ │ ├── SaveXLSXFile.java │ │ ├── SavingFiletoSomeLocation.java │ │ ├── SavingFiletoStream.java │ │ ├── SavingTextFilewithCustomSeparator.java │ │ ├── SettingImagePrefrencesforHTML.java │ │ ├── SpecifyDocumentVersionOfExcelFile.java │ │ ├── SpecifyHtmlCrossTypeInOutputHTML.java │ │ ├── TrimBlankRowsAndColsWhileExportingSpreadsheetsToCSVFormat.java │ │ ├── VerifyPassword.java │ │ ├── WarningCallback.java │ │ └── WorksheetToImage.java │ ├── PivotTables │ │ ├── ChangeSourceData.java │ │ ├── ClearPivotFields.java │ │ ├── ConsolidationFunctions.java │ │ ├── CreatePivotTable.java │ │ ├── CustomizeGlobalizationSettingsforPivotTable.java │ │ ├── DisablePivotTableRibbon.java │ │ ├── FindAndRefreshNestedOrChildrenPivotTables.java │ │ ├── GetPivotTableRefreshDate.java │ │ ├── GroupPivotFieldsInPivotTable.java │ │ ├── ModifyPivotTableQuickStyle.java │ │ ├── ParsingPivotCachedRecordsWhileLoadingExcelFile.java │ │ ├── PivotTableCustomSort.java │ │ ├── PivotTableDataDisplayFormatRanking.java │ │ ├── PivotTableGetExternalConnectionDataSource.java │ │ ├── PivotTableSaveInODS.java │ │ ├── PivotTableSortAndHide.java │ │ ├── SetAutoFormatandPivotTableStyleTypes.java │ │ ├── SetRowColumnPageFieldsFormat.java │ │ ├── SettingDataFieldFormat.java │ │ ├── SettingFormatOptions.java │ │ └── ShowReportFilterPagesOption.java │ ├── Rendering │ │ ├── AddPDFBookmarksWithNamedDestinations.java │ │ ├── AvoidBlankPageInOutputPdfWhenThereIsNothingToPrint.java │ │ ├── ControlLoadingOfExternalResourcesInExcelToPDF.java │ │ ├── CreatePdfBookmarkEntryForChartSheet.java │ │ ├── GetDrawObjectAndBoundUsingDrawObjectEventHandler.java │ │ ├── IgnoreErrorsWhileRenderingExcelToPdf.java │ │ ├── OutputBlankPageWhenThereIsNothingToPrint.java │ │ ├── RenderLimitedNoOfSequentialPages.java │ │ ├── RenderOfficeAdd_InsWhileConvertingExcelToPdf.java │ │ └── RenderUsingTextCrossType.java │ ├── RowsAndColumns │ │ ├── AutoFitColumnsinaRangeofCells.java │ │ ├── AutoFitRowsandColumns.java │ │ ├── AutoFitRowsinaRangeofCells.java │ │ ├── AutofitRowsforMergedCells.java │ │ ├── ConvertTexttoCols.java │ │ ├── CopyingColumns.java │ │ ├── CopyingRows.java │ │ ├── DeleteAColumn.java │ │ ├── DeleteARow.java │ │ ├── DeleteMultipleRows.java │ │ ├── GroupingRowsandColumns.java │ │ ├── HidingRowsandColumns.java │ │ ├── InsertingAColumn.java │ │ ├── InsertingARow.java │ │ ├── InsertingARowWithFormatting.java │ │ ├── InsertingMultipleRows.java │ │ ├── SetColumnViewWidthInPixels.java │ │ ├── SettingHeightAllRows.java │ │ ├── SettingHeightOfRow.java │ │ ├── SettingWidthOfAllColumns.java │ │ ├── SettingWidthOfColumn.java │ │ ├── SummaryRowBelow.java │ │ ├── SummaryRowRight.java │ │ ├── UngroupingRowsandColumns.java │ │ └── UnhidingRowsandColumns.java │ ├── RunExamples.java │ ├── Slicers │ │ ├── ChangeSlicerProperties.java │ │ ├── CreateSlicerToExcelTable.java │ │ ├── CreateSlicerToPivotTable.java │ │ ├── ExportSlicerToPDF.java │ │ ├── FormattingSlicer.java │ │ ├── RemovingSlicer.java │ │ ├── RenderingSlicer.java │ │ └── UpdatingSlicer.java │ ├── SmartMarkers │ │ ├── AutoPopulateSmartMarkerDataToOtherWorksheets.java │ │ ├── DynamicFormulas.java │ │ ├── Individual.java │ │ ├── Person.java │ │ ├── Teacher.java │ │ ├── UsingFormulaParameterInSmartMarkerField.java │ │ ├── UsingGenericList.java │ │ ├── UsingHTMLProperty.java │ │ ├── UsingNestedObjects.java │ │ └── UsingVariableArray.java │ ├── Tables │ │ ├── ConvertTableToOds.java │ │ ├── ConvertTableToRange.java │ │ ├── ConvertTableToRangeWithOptions.java │ │ ├── CreatingListObject.java │ │ ├── FindReferenceCellsFromExternalConnection.java │ │ ├── FormataListObject.java │ │ ├── ReadAndWriteTableWithQueryTableDataSource.java │ │ └── SettheCommentofTableorListObject.java │ ├── TechnicalArticles │ │ ├── AccessAndUpdatePortions.java │ │ ├── AccessTextBoxName.java │ │ ├── AccessingTablefromCell.java │ │ ├── ActivatingSheetsandActivatingCell.java │ │ ├── AddActiveXControl.java │ │ ├── AddConditionalIconsSet.java │ │ ├── AddCustomLabelsToDataPoints.java │ │ ├── AddHTMLRichText.java │ │ ├── AddImageHyperlinks.java │ │ ├── AddLibraryReference.java │ │ ├── AddLibraryReferenceToVbaProject.java │ │ ├── AddNamedRangeWithWorkbookScope.java │ │ ├── AddNamedRangeWithWorksheetScope.java │ │ ├── AddPDFBookmarks.java │ │ ├── AddPicturetoExcelComment.java │ │ ├── AddVBAModuleAndCode.java │ │ ├── AddWordArtText.java │ │ ├── AddWordArtWatermarkToChart.java │ │ ├── AddWordArtWatermarkToWorksheet.java │ │ ├── AddXMLMapInsideWorkbook.java │ │ ├── AddingTwoAndThreeColorScale.java │ │ ├── ApplyShadingToAlternateRowsAndColumns.java │ │ ├── ApplyingEncryption.java │ │ ├── ApplyingSubscript.java │ │ ├── ApplyingSubtotal.java │ │ ├── ApplyingSuperscript.java │ │ ├── AssignMacroToFormControl.java │ │ ├── AutoFitRowsforMergedCells.java │ │ ├── AutomaticallyrefreshOLEobject.java │ │ ├── CalculateCustomFunctionWithoutWritingToWorksheet.java │ │ ├── CalculateIFNAfunction.java │ │ ├── CalculatePageSetupScalingFactor.java │ │ ├── CalculateWidthAndHeightOfCell.java │ │ ├── CalculationOfArrayFormula.java │ │ ├── CalculationofExcelMINIFSandMAXIFSfunctions.java │ │ ├── CellsIterator.java │ │ ├── ChangeAbsolutePathofExternalLink.java │ │ ├── ChangeAdjustmentValuesOfShape.java │ │ ├── ChangeCharacterSpacing.java │ │ ├── ChangeCommentFontColor.java │ │ ├── ChangeDataSource.java │ │ ├── ChangeFontonspecificUnicodecharacters.java │ │ ├── ChangeHTMLLinkTargetType.java │ │ ├── ChangeHtmlLinkTarget.java │ │ ├── ChangeTextDirectionofComment.java │ │ ├── ChangingLayoutofPivotTable.java │ │ ├── CheckForShapes.java │ │ ├── CheckPassword.java │ │ ├── CheckVBAProjectInWorkbookIsSigned.java │ │ ├── CheckVbaProjectSigned.java │ │ ├── CheckWorkbookContainsHiddenExternalLinks.java │ │ ├── ColumnsIterator.java │ │ ├── CombineMultipleWorkbooks.java │ │ ├── CombineMultipleWorksheets.java │ │ ├── ConditionalFormattingBasedOnFormula.java │ │ ├── ConditionalFormattingOnCellValue.java │ │ ├── ConversionOptions.java │ │ ├── ConvertCSVfiletoXLSX.java │ │ ├── ConvertCharttoImageinSVGFormat.java │ │ ├── ConvertRevisionOfXLSBtoXLSM.java │ │ ├── ConvertTextNumericDatatoNumber.java │ │ ├── ConvertWorkbooktoImage.java │ │ ├── ConvertWorksheetToImageByPage.java │ │ ├── ConvertWorksheettoImage.java │ │ ├── ConvertWorksheettoImageFile.java │ │ ├── ConvertXLSFileToPDF.java │ │ ├── CopyChartFromOneWorksheetToAnother.java │ │ ├── CopyPicturefromOneWorksheetToAnother.java │ │ ├── CopyRangeDataOnly.java │ │ ├── CopyRangeDataWithStyle.java │ │ ├── CopyRangeStyleOnly.java │ │ ├── CopyRowHeights.java │ │ ├── CopySparkline.java │ │ ├── CopyWorksheetBetweenWorkbooks.java │ │ ├── CopyingMultipleColumns.java │ │ ├── CopyingMultipleRows.java │ │ ├── CopyingSingleColumn.java │ │ ├── CopyingSingleRow.java │ │ ├── CreatePieChartWithLeaderLines.java │ │ ├── CreatePivotChartbasedonPivotTable.java │ │ ├── CreatePivotTable.java │ │ ├── CreateScenariosfromWorksheets.java │ │ ├── CreateSignatureLine.java │ │ ├── CreateStyleobjectusingCellsFactoryclass.java │ │ ├── CreateTableforRange.java │ │ ├── CreateTextBoxhavingdifferentLineAlignment.java │ │ ├── CreateTransparentImage.java │ │ ├── CreateWaterfallChart.java │ │ ├── CreatingStyle.java │ │ ├── CustomChartGlobalizationSettings.java │ │ ├── CustomEngine.java │ │ ├── CustomFunctionStaticValue.java │ │ ├── CustomLabelsforSubtotals.java │ │ ├── CustomLoad.java │ │ ├── CustomSettings.java │ │ ├── CustomSliceOrSectorColorsPieChart.java │ │ ├── CustomTextforOtherLabelofPieChart.java │ │ ├── CustomizingThemes.java │ │ ├── DataFormatting.java │ │ ├── DecreaseCalculationTime.java │ │ ├── DeletePivotTableFromWorksheet.java │ │ ├── DeleteRedundantSpacesFromHtml.java │ │ ├── DeletingBlankColumns.java │ │ ├── DeletingBlankRows.java │ │ ├── Demo.java │ │ ├── DetectCellValueStartsWithSingleQuote.java │ │ ├── DetectFileFormatOfEncryptedFiles.java │ │ ├── DetectFileFormatandCheckFileEncrypted.java │ │ ├── DetectMergedCells.java │ │ ├── DetectWorksheetisPasswordProtected.java │ │ ├── DetermineWhichAxisExistsInChart.java │ │ ├── DeterminetheLicenseLoadedSuccessfully.java │ │ ├── DisableCompatibilityChecker.java │ │ ├── DisableExporting.java │ │ ├── DisableTextWrapping.java │ │ ├── DisplayBullets.java │ │ ├── EasyWayForChartSetup.java │ │ ├── EditingHyperlinksOfWorksheet.java │ │ ├── ExceltoHTMLPresentationPreferenceOption.java │ │ ├── ExceltoPDF.java │ │ ├── ExportCharttoSVG.java │ │ ├── ExportExceltoHTML.java │ │ ├── ExportRangeofCells.java │ │ ├── ExportStreamProvider.java │ │ ├── ExportWorksheettoImage.java │ │ ├── ExportXmlDataOfXmlMap.java │ │ ├── ExtractImagesfromWorksheets.java │ │ ├── ExtractOLEObjects.java │ │ ├── ExtractThemeData.java │ │ ├── FilePathProvider.java │ │ ├── FilterDataWhileLoadingWorkbook.java │ │ ├── FilterObjectsLoadingWorkbook.java │ │ ├── FilterObjectsLoadingWorksheets.java │ │ ├── FindAbsolutePositionOfShape.java │ │ ├── FindCellsWithSpecificStyle.java │ │ ├── FindDataPoints.java │ │ ├── FindReferenceCellsFromExternalConnection.java │ │ ├── FitAllWorksheetColumns.java │ │ ├── FormatPivotTableCells.java │ │ ├── GenerateChartByProcessingSmartMarkers.java │ │ ├── GenerateDatabarImage.java │ │ ├── GenerateThumbnailofWorksheet.java │ │ ├── GetCellObject.java │ │ ├── GetCellStringValue.java │ │ ├── GetDataConnection.java │ │ ├── GetEquationText.java │ │ ├── GetFontsUsedinWorkbook.java │ │ ├── GetNotificationsWhileMergingData.java │ │ ├── GetSetThemeColors.java │ │ ├── GetSettheClassIdentifier.java │ │ ├── GetSmartMarkerNotifications.java │ │ ├── GetValidationAppliedonCell.java │ │ ├── GetVersionNumberofApplication.java │ │ ├── GetWorksheetOfChart.java │ │ ├── GlobalizationSettingsImp.java │ │ ├── HidingDisplayOfZeroValues.java │ │ ├── HtmlExportFrameScripts.java │ │ ├── HtmlSaveOptions.java │ │ ├── Implement1904DateSystem.java │ │ ├── ImplementCustomCalculationEngine.java │ │ ├── ImplementSubtotalGrandTotallabels.java │ │ ├── ImplementingIStreamProvider.java │ │ ├── ImplementingNonSequentialRanges.java │ │ ├── ImportXMLMap.java │ │ ├── InsertDeleteRows.java │ │ ├── InsertLinkedPicturefromWebAddress.java │ │ ├── InsertPictureCellReference.java │ │ ├── InsertWebImageFromURL.java │ │ ├── KeepPrecisionOfLargeNumbers.java │ │ ├── LightCellsDataHandlerVisitCells.java │ │ ├── LightCellsDataProviderDemo.java │ │ ├── LightCellsTest1.java │ │ ├── LimitNumberofPagesGenerated.java │ │ ├── LinkCellstoXmlMapElements.java │ │ ├── LoadOrImportCSVFile.java │ │ ├── LoadSourceExcelFile.java │ │ ├── LoadSpecificWorksheetsinWorkbook.java │ │ ├── LoadWorkbook.java │ │ ├── LockWordArtWatermark.java │ │ ├── MergeUnmergeRangeofCells.java │ │ ├── ModifyExistingSQLDataConnection.java │ │ ├── ModifyExistingStyle.java │ │ ├── ModifyVBAorMacroCode.java │ │ ├── MoveRangeOfCellsInWorksheet.java │ │ ├── PastingRowsColumnsWithPasteOptions.java │ │ ├── PopulateDatabyRowthenColumn.java │ │ ├── PreventExportingHiddenWorksheetContent.java │ │ ├── PrintComments.java │ │ ├── PropagateFormulaInTableorListObject.java │ │ ├── ReadLargeExcelFiles.java │ │ ├── ReadingAndWritingQueryTable.java │ │ ├── ReadingCSVFile.java │ │ ├── RefreshCalculatePivotTablehavingCalculatedItems.java │ │ ├── RefreshValuesOfLinkedShapes.java │ │ ├── ReleaseUnmanagedResources.java │ │ ├── RemoveActiveXControl.java │ │ ├── RemoveUnusedStyles.java │ │ ├── RemoveWhitespaceAroundData.java │ │ ├── RenderCustomDateFormat.java │ │ ├── RenderGradientFillHTML.java │ │ ├── RenderWorksheetToGraphicContext.java │ │ ├── ResampleImagesforExceltoPDFConversion.java │ │ ├── ResizeChartDataLabelShapeToFitText.java │ │ ├── RetrieveQueryTableResultRange.java │ │ ├── RetrieveSQLConnectionData.java │ │ ├── RetrievingExternalDataSourcesDetails.java │ │ ├── ReturningRangeOfValues.java │ │ ├── ReuseStyleObjects.java │ │ ├── RichTextCustomData.java │ │ ├── RowsIterator.java │ │ ├── SaveEachWorksheettoDifferentPDF.java │ │ ├── SaveExcelToPDF.java │ │ ├── SaveODSfile.java │ │ ├── SearchDataUsingOriginalValues.java │ │ ├── SearchReplaceDataInRange.java │ │ ├── SecurePDFDocuments.java │ │ ├── SetAutoRecoverProperty.java │ │ ├── SetBackgroundPictureforWorksheet.java │ │ ├── SetCustomFontFolders.java │ │ ├── SetExternalLinksInFormulas.java │ │ ├── SetFormulaCalculationMode.java │ │ ├── SetLineSpacingofParagraph.java │ │ ├── SetPictureAsBackgroundFillInChart.java │ │ ├── SetPresetWordArtStyle.java │ │ ├── SetWorksheetTabColor.java │ │ ├── Settextofchartlegend.java │ │ ├── SettheCommentofTableorListObject.java │ │ ├── SettingPageSetupOptions.java │ │ ├── SettingPivotTableOption.java │ │ ├── SettingPrintoptions.java │ │ ├── SettingScaleCropLinksUpToDate.java │ │ ├── SettingSharedFormula.java │ │ ├── SettingTextEffectsShadowOfShapeOrTextbox.java │ │ ├── ShowCellRangeAsTheDataLabels.java │ │ ├── ShowFormulas.java │ │ ├── SmartMarkerGroupingImage.java │ │ ├── SortData.java │ │ ├── SpecifyAbsolutePositionOfPivotItem.java │ │ ├── SpecifyJoborDocumentName.java │ │ ├── SpecifyingCustomSeparators.java │ │ ├── SupportthelayoutofDIVtags.java │ │ ├── UpdateActiveXComboBoxControl.java │ │ ├── UpdateRichTextCells.java │ │ ├── UseErrorCheckingOptions.java │ │ ├── UseExplicitLineBreaks.java │ │ ├── UseThemeColors.java │ │ ├── UsingBuiltinStyles.java │ │ ├── UsingCustomXmlParts.java │ │ ├── UsingDisplayRange.java │ │ ├── UsingDynamicFormulas.java │ │ ├── UsingExcelTables.java │ │ ├── UsingFormulaTextfunction.java │ │ ├── UsingMaxDataRowAndMaxDataColumn.java │ │ ├── UsingWorkbookMetadata.java │ │ ├── ValidatingSpreadsheets.java │ │ ├── VerifyCellValueSatisfiesDataValidationRules.java │ │ ├── VerifyPasswordtoProtectWorksheet.java │ │ ├── WarningCallback.java │ │ ├── WorkingWithExternalDataConnection.java │ │ ├── WorkingWithGlowEffect.java │ │ ├── WorkingWithReflectionEffect.java │ │ ├── WorkingWithShadowEffect.java │ │ ├── WorkingWithThreeDFormat.java │ │ ├── WorksheetToSeparateImage.java │ │ ├── WrapTextinCell.java │ │ └── WritingLargeExcelFiles.java │ ├── Utils.java │ ├── Workbook │ │ ├── AccessWebExtensionInformation.java │ │ ├── AddCustomXMLPartsAndSelectThemByID.java │ │ ├── AddDigitalSignatureToAnAlreadySignedExcelFile.java │ │ ├── AddWebExtension.java │ │ ├── AdjustCompressionLevel.java │ │ ├── AllowLeadingApostrophe.java │ │ ├── CreateSharedWorkbook.java │ │ ├── DetectLinkTypes.java │ │ ├── ExtractEmbeddedMolFile.java │ │ ├── FilterDefinedNamesWhileLoadingWorkbook.java │ │ ├── GetHyperlinksInRange.java │ │ ├── GetOdataDetails.java │ │ ├── GetRangeWithExternalLinks.java │ │ ├── PasswordProtectOrUnprotectSharedWorkbook.java │ │ ├── PrintPreview.java │ │ ├── ReadAndWriteExternalConnectionOfXLSBFile.java │ │ ├── RegexReplace.java │ │ ├── StopConversionOrLoadingUsingInterruptMonitor.java │ │ ├── WorkingWithContentTypeProperties.java │ │ └── XAdESSignatureSupport.java │ ├── WorkbookSettings │ │ ├── ControlExternalResourcesUsingWorkbookSetting_StreamProvider.java │ │ ├── FindMaximumRowsAndColumnsSupportedByXLSAndXLSXFormats.java │ │ ├── ImplementErrorsAndBooleanValueInRussianOrAnyOtherLanguage.java │ │ ├── Implement_Cell_FormulaLocal_SimilarTo_Range_FormulaLocal.java │ │ └── SupportNamedRangeFormulasInGermanLocale.java │ ├── WorkbookVBAProject │ │ ├── CheckifVBAProjectisProtectedandLockedforViewing.java │ │ ├── CopyVBAMacroUserFormDesignerStorageToWorkbook.java │ │ ├── FilterVBAMacrosWhileLoadingWorkbook.java │ │ ├── FindoutifVBAProjectisProtected.java │ │ └── PasswordProtecttheVBAProjectofExcelWorkbook.java │ ├── Worksheets │ │ ├── AccessingWorksheetsusingSheetName.java │ │ ├── AddThreadedComments.java │ │ ├── AddingPageBreaks.java │ │ ├── AddingWorksheetstoDesignerSpreadsheet.java │ │ ├── AddingWorksheetstoNewExcelFile.java │ │ ├── AdvancedProtection.java │ │ ├── AdvancedProtectionSettingsUsingAsposeCells.java │ │ ├── CenterOnPage.java │ │ ├── ClearAllPageBreaks.java │ │ ├── CopyWithinWorkbook.java │ │ ├── CopyWorksheetFromWorkbookToOther.java │ │ ├── CopyWorksheetsBetweenWorkbooks.java │ │ ├── CountNumberOfCells.java │ │ ├── CutAndPasteCells.java │ │ ├── DetectInternationalMacroSheet.java │ │ ├── DisplayHideGridlines.java │ │ ├── DisplayHideScrollBars.java │ │ ├── DisplayTab.java │ │ ├── EditThreadedComments.java │ │ ├── FindIfWorksheetIsDialogSheet.java │ │ ├── FitToPagesOptions.java │ │ ├── FreezePanes.java │ │ ├── GetCellValidationInODS.java │ │ ├── GetPaperWidthHeight.java │ │ ├── GetWorksheetUniqueId.java │ │ ├── HeaderAndFooterMargins.java │ │ ├── HideTabs.java │ │ ├── HideUnhideWorksheet.java │ │ ├── InsertGraphicinFirstPageHeaderOnly.java │ │ ├── InsertImageInHeaderFooter.java │ │ ├── LockCell.java │ │ ├── ManagePaperSize.java │ │ ├── MoveWorksheet.java │ │ ├── OtherPrintOptions.java │ │ ├── PageBreakPreview.java │ │ ├── PageOrientation.java │ │ ├── PageSetupFeatures │ │ │ ├── CopyPageSetupSettingsFromSourceWorksheetToDestinationWorksheet.java │ │ │ ├── DetermineIfPaperSizeOfWorksheetIsAutomatic.java │ │ │ ├── ImplementCustomPaperSizeOfWorksheetForRendering.java │ │ │ └── RemoveExistingPrinterSettingsOfWorksheets.java │ │ ├── ProtectColumnWorksheet.java │ │ ├── ProtectRowWorksheet.java │ │ ├── ProtectingSpecificCellsinaWorksheet.java │ │ ├── ProtectingWorksheet.java │ │ ├── ReadODSBackground.java │ │ ├── ReadThreadedCommentCreatedTime.java │ │ ├── ReadThreadedComments.java │ │ ├── RemovePanes.java │ │ ├── RemoveSpecificPageBreak.java │ │ ├── RemoveThreadedComments.java │ │ ├── RemovingWorksheetsusingSheetIndex.java │ │ ├── RemovingWorksheetsusingSheetName.java │ │ ├── ScalingFactor.java │ │ ├── SetFirstPageNumber.java │ │ ├── SetHeadersAndFooters.java │ │ ├── SetMargins.java │ │ ├── SetODSColoredBackground.java │ │ ├── SetODSGraphicBackground.java │ │ ├── SetPageOrder.java │ │ ├── SetPrintArea.java │ │ ├── SetPrintQuality.java │ │ ├── SetPrintTitle.java │ │ ├── SpecifyAuthorWhileWriteProtectingWorkbook.java │ │ ├── SplitPanes.java │ │ ├── UnprotectProtectSheet.java │ │ ├── UnprotectingSimplyProtectedWorksheet.java │ │ ├── UpdateDaysPreservingHistoryOfRevisionLogsInSharedWorkbook.java │ │ ├── UtilizeSheet_SheetId_PropertyOfOpenXml.java │ │ └── ZoomFactor.java │ └── XmlMaps │ │ ├── FindRootElementNameOfXmlMap.java │ │ ├── GetXMLPathFromListObjectTable.java │ │ └── QueryCellAreasMappedToXmlMapPath.java │ └── resources │ ├── 01_SourceDirectory │ ├── AddTooltipToHtmlSample.xlsx │ ├── AllowLeadingApostropheSample.xlsx │ ├── AsposeTest.pfx │ ├── Blank.xlsx │ ├── Book1.xlsx │ ├── CellsNet46500.xlsx │ ├── CustomFonts │ │ └── CatsAlphabet.ttf │ ├── EmbeddedMolSample.xlsx │ ├── Excel95_5.0.xls │ ├── GetTextWidthSample.xlsx │ ├── GraphicBackground.ods │ ├── HyperlinksSample.xlsx │ ├── InternationalMacroSheet.xlsm │ ├── LargeSampleFile.xlsx │ ├── LinkTypes.xlsx │ ├── NonBlank.xlsx │ ├── Note.txt │ ├── ODataSample.xlsx │ ├── PagesBook1.xlsx │ ├── PivotTableHideAndSortSample.xlsx │ ├── PivotTableSample.xlsx │ ├── Query TXT.xlsx │ ├── SampleBook1.ods │ ├── SampleBook1.xlsx │ ├── SampleChangeTickLabelDirection.xlsx │ ├── SampleCsv.csv │ ├── SampleExternalReferences.xlsx │ ├── SampleFods.fods │ ├── SampleJson.json │ ├── SampleNamedRange.xlsx │ ├── SamplePivotSort.xlsx │ ├── SamplePivotTableExternalConnection.xlsx │ ├── SamplePowerQueryFormula.xlsx │ ├── SampleRegexReplace.xlsx │ ├── SampleSXC.sxc │ ├── SampleSlicerChart.xlsx │ ├── SampleSubtotal.xlsx │ ├── SampleTSVFile.tsv │ ├── SampleTable.xlsx │ ├── SampleTableWithQueryTable.xls │ ├── SampleTextboxExcel2016.xlsx │ ├── SmartArt.xlsx │ ├── Students.accdb │ ├── TestUDF.xlam │ ├── ValidationsSample.xlsx │ ├── WebExtensionsSample.xlsx │ ├── XML Data.xlsx │ ├── background.png │ ├── newPdfSaveOptions_StreamProvider.png │ ├── oldPdfSaveOptions_StreamProvider.png │ ├── pivot_table_test.xlsx │ ├── sampleAccessAndModifyLabelOfOleObject.xlsx │ ├── sampleAdvancedFilter.xlsx │ ├── sampleAutoPopulateSmartMarkerDataToOtherWorksheets.accdb │ ├── sampleBackgroundFile.xlsx │ ├── sampleCalculationMonitor.xlsx │ ├── sampleChangeCellsAlignmentAndKeepExistingFormatting.xlsx │ ├── sampleControlExternalResourcesUsingWorkbookSetting_StreamProvider.png │ ├── sampleControlExternalResourcesUsingWorkbookSetting_StreamProvider.xlsx │ ├── sampleCreateChartPDFWithDesiredPageSize.xlsx │ ├── sampleCreatePdfBookmarkEntryForChartSheet.xlsx │ ├── sampleCreateSlicerToExcelTable.xlsx │ ├── sampleCreateSlicerToPivotTable.xlsx │ ├── sampleCrosssType.xlsx │ ├── sampleDataValidationRules.xlsx │ ├── sampleDesignerForm.xlsm │ ├── sampleDigitallySignedByCells.xlsx │ ├── sampleDisableDownlevelRevealedComments.xlsx │ ├── sampleEncryptedODSFile.ods │ ├── sampleErrorExcel2Pdf.xlsx │ ├── sampleExportCommentsHTML.xlsx │ ├── sampleExportDocumentWorkbookAndWorksheetPropertiesInHTML.xlsx │ ├── sampleExportSimilarBorderStyle.xlsx │ ├── sampleExternalConnection_XLSB.xlsb │ ├── sampleExtractTextFromGearTypeSmartArtShape.xlsx │ ├── sampleFilterDefinedNamesWhileLoadingWorkbook.xlsx │ ├── sampleFindAndRefreshNestedOrChildrenPivotTables.xlsx │ ├── sampleFindIfWorksheetIsDialogSheet.xlsx │ ├── sampleFindTypeOfXandYValuesOfPointsInChartSeries.xlsx │ ├── sampleForScalableColumns.xlsx │ ├── sampleFormattingSlicer.xlsx │ ├── sampleGenerateDatabarImage.xlsx │ ├── sampleGetAllHiddenRowsIndicesAfterRefreshingAutoFilter.xlsx │ ├── sampleGetDrawObjectAndBoundUsingDrawObjectEventHandler.xlsx │ ├── sampleGroupPivotFieldsInPivotTable.xlsx │ ├── sampleHandleAutomaticUnitsOfChartAxisLikeMicrosoftExcel.xlsx │ ├── sampleHidingOverlaidContentWithCrossHideRightWhileSavingToHtml.xlsx │ ├── sampleHtmlCrossStringType.xlsx │ ├── sampleImageOrPrintOptions_PageIndexPageCount.xlsx │ ├── sampleImportTableOptionsShiftFirstRowDown.xlsx │ ├── sampleInlineCharts.xlsx │ ├── sampleMacroEnabledWorkbook.xlsm │ ├── sampleMergedTemplate.xlsx │ ├── sampleNamedRangeTest.xlsm │ ├── sampleNumbersByAppleInc.numbers │ ├── sampleODSFile.ods │ ├── samplePageSetupIsAutomaticPaperSize-False.xlsx │ ├── samplePageSetupIsAutomaticPaperSize-True.xlsx │ ├── sampleParsingPivotCachedRecordsWhileLoadingExcelFile.xlsx │ ├── samplePdfBookmarkEntry_DestinationName.xlsx │ ├── samplePdfSaveOptions_StreamProvider.xlsx │ ├── samplePivotTable.xlsx │ ├── samplePreferredParser.csv │ ├── sampleReadAxisLabelsAfterCalculatingTheChart.xlsx │ ├── sampleRemoveExistingPrinterSettingsOfWorksheets.xlsx │ ├── sampleRemovingSlicer.xlsx │ ├── sampleRenderCustomDateFormat.xlsx │ ├── sampleRenderOfficeAdd-Ins.xlsx │ ├── sampleRenderingSlicer.xlsx │ ├── sampleReplaceTagWithText.xlsx │ ├── sampleRetrievingSQLConnectionData.xlsx │ ├── sampleRootElementNameOfXmlMap.xlsx │ ├── sampleRotateTextWithShapeInsideWorksheet.xlsx │ ├── sampleRussianGlobalization.xlsx │ ├── sampleSelfClosingTags.html │ ├── sampleSeries_ValuesFormatCode.xlsx │ ├── sampleSetDefaultFontPropertyOfPdfSaveOptionsAndImageOrPrintOptions.xlsx │ ├── sampleSetMarginsOfCommentOrShapeInsideTheWorksheet.xlsx │ ├── sampleSetShapeTypeOfDataLabelsOfChart.xlsx │ ├── sampleSheetId.xlsx │ ├── sampleSingleSheet.xlsx │ ├── sampleSmartArtShape.xlsx │ ├── sampleSmartArtShape_GetResultOfSmartArt.xlsx │ ├── sampleSortData_CustomSortList.xlsx │ ├── sampleSpecifyIndividualOrPrivateSetOfFontsForWorkbookRendering.xlsx │ ├── sampleTextureFill_IsTiling.xlsx │ ├── sampleToFrontOrBack.xlsx │ ├── sampleUpdatingSlicer.xlsx │ ├── sampleUseWorkbookRenderForImageConversion.xlsx │ ├── sampleValidation.xlsx │ ├── sampleXmlMapQuery.xlsx │ ├── sourceFile.xlsx │ ├── sourcePivotTable.xlsx │ ├── sourceWithCustProps.xlsx │ └── sourseSampleCountryNames.xlsx │ ├── CellsHelperClass │ ├── Book1.xls │ └── Book2.xls │ ├── Charts │ ├── ModifyCharts.xlsx │ ├── SampleChart.ods │ ├── SettingChartLines_out.xls │ ├── book1.xls │ ├── chart.xls │ ├── excel2016Charts.xlsx │ └── logo.jpg │ ├── Data │ ├── Book1.xlsx │ ├── Test.json │ ├── book1.xls │ ├── mergingcells.xls │ └── sampleSortAsNumber.xlsx │ ├── DrawingObjects │ ├── Book1.xlsx │ ├── Excel_File0.xls │ ├── NonPrimitiveShape.xlsx │ ├── book1.xls │ ├── logo.jpg │ ├── sourceGlowEffectColor.xlsx │ └── tempBook1ole0.Xls │ ├── Formulas │ ├── Book1.xls │ ├── Book1.xlsx │ ├── sample1.xlsx │ └── test.xls │ ├── Introduction │ ├── Book1.xls │ └── Book1.xlsx │ ├── LoadingSavingConvertingAndManaging │ ├── Book1.xls │ ├── Book1.xlsx │ ├── Book1TabDelimited.txt │ ├── Book2.xls │ ├── Book3.xml │ ├── Book_CSV.csv │ ├── Book_Excel2007.xlsx │ ├── Book_Excel97_2003.xls │ ├── E2PDFC-out.pdf │ ├── EncryptedBook1.xlsx │ ├── KeepSeparatorsForBlankRow.xlsx │ ├── MyTestBook1.xlsx │ ├── [20180220142533][ASPOSE_CELLS_TEST].csv │ ├── encryptedBook.xls │ ├── sampleDuplicateDefinedName.xlsx │ └── sampleTrimBlankColumns.xlsx │ ├── PivotTables │ ├── PivotTable.xls │ ├── sample1.xlsx │ └── samplePivotTableGlobalizationSettings.xlsx │ ├── RowsAndColumns │ ├── Book1.xlsx │ ├── BookStyles.xls │ └── book1.xls │ ├── SmartMarkers │ └── TestSmartMarkers.xlsx │ ├── Tables │ ├── List_Object.xlsx │ ├── book1.xlsx │ ├── listBook.xls │ └── sample.xlsm │ ├── TechnicalArticles │ ├── ATFromCell.xlsx │ ├── AddWordArtText_out.xlsx │ ├── BackImageSheet.xlsx │ ├── BookStyles.xls │ ├── Book_SourceData.xlsx │ ├── CheckWorkbookContainsHiddenExternalLinks_in.xlsx │ ├── Controls.xlsx │ ├── ConvertWorksheetToImageByPage.xlsx │ ├── CopyRange.xlsx │ ├── CopyRangeData.xlsx │ ├── CopyRangeDataWithFormatting.xlsx │ ├── CopyRangeStyleOnly.xlsx │ ├── CustomThemeColor.xlsx │ ├── CustomUI.xml │ ├── CustomerReport.xls │ ├── FormatWorksheet.xls │ ├── FormatWorksheet.xlsx │ ├── ImageHyperlink.xls │ ├── InsertedImage.xls │ ├── LinkCellstoXmlMapElements_in.xlsx │ ├── LoadSourceExcelFile.xlsx │ ├── MergeTrial.xlsx │ ├── MultiEncoded.csv │ ├── MyTestBook1.xlsx │ ├── PageSetup.xls │ ├── PieBars.xlsx │ ├── PieChart.emf │ ├── PieChart.xlsx │ ├── Sample1.xlsx │ ├── SampleChart.xlsx │ ├── SampleCheckCells.xlsx │ ├── SampleImage.xlsx │ ├── SampleInput.xlsx │ ├── SampleQT.xlsx │ ├── SetPresetWordArtStyle_out.xlsx │ ├── Shapes.xlsx │ ├── SheetImage.jpg │ ├── SheetImage.tiff │ ├── Styles.xlsx │ ├── Subscript.xls │ ├── Superscript.xls │ ├── Test.xlsx │ ├── TestBook.xlsx │ ├── TestData.xlsx │ ├── WebQuerySample.xlsx │ ├── WorkingWithGlowEffect_in.xlsx │ ├── WorkingWithReflectionEffect_in.xlsx │ ├── WorkingWithShadowEffect_in.xlsx │ ├── WorkingWithThreeDFormat_in.xlsx │ ├── WrappingText.xlsx │ ├── aspose-logo.jpg │ ├── aspose-sample.xlsx │ ├── autofitmergedcells.xlsx │ ├── book1.xlsx │ ├── book2.xlsx │ ├── book3.xlsx │ ├── character-spacing.xlsx │ ├── chord.wav │ ├── column_chart.xls │ ├── connection.xlsx │ ├── copyrangestyle.xls │ ├── encryptedBook1.xls │ ├── image2.jpg │ ├── imgIcon.jpg │ ├── oleFile.xlsx │ ├── pivotChart_test.xls │ ├── pivotTable_test.xls │ ├── pivotTable_test.xlsx │ ├── report.xlsx │ ├── sample.xls │ ├── sample.xlsm │ ├── sample.xlsx │ ├── sample.xml │ ├── sample1.png │ ├── sample2.jpg │ ├── sampleFilterCharts.xlsx │ ├── sampleFilterDataWhileLoadingWorkbook.xlsx │ ├── sampleFilterDifferentObjects.xlsx │ ├── sampleGetFonts.xlsx │ ├── sample_Export-Xml-Data-linked.xlsx │ ├── source.xlsx │ ├── sourceGradientFill.xlsx │ ├── testModel Inputs Page1.tif │ ├── webimagebook.xlsx │ ├── ~$Controls.xlsx │ └── ~$Shapes.xlsx │ ├── WorkbookVBAProject │ ├── sampleCheckifVBAProjectisProtected.xlsm │ └── samplePasswordProtectVBAProject.xlsm │ └── Worksheets │ ├── BkFinance.xls │ ├── BookWithSomeData.xlsx │ ├── FinalBook.xls │ ├── SampleXLSFile_38kb.xls │ ├── ThreadedCommentsSample.xlsx │ ├── book.xls │ ├── book1.xls │ ├── book1.xlsx │ ├── footer.jpg │ └── school.jpg ├── LICENSE ├── Plugins ├── Aspose-Cells-Java-for-Eclipse(Maven) │ ├── AsposeCellsEclipseFeature │ │ ├── .project │ │ ├── build.properties │ │ └── feature.xml │ ├── AsposeCellsEclipsePlugin │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── resources │ │ │ ├── Aspose.png │ │ │ ├── classpath-template.txt │ │ │ ├── long_banner.png │ │ │ ├── org-eclipse-jdt-core.txt │ │ │ └── pom-xml-template.txt │ │ └── src │ │ │ ├── com │ │ │ └── aspose │ │ │ │ └── cells │ │ │ │ ├── Activator.java │ │ │ │ ├── MavenSettings.java │ │ │ │ └── maven │ │ │ │ ├── AsposeMavenProjectSupport.java │ │ │ │ ├── AsposeMavenProjectWizard.java │ │ │ │ ├── AsposeMavenProjectWizardPage.java │ │ │ │ ├── artifacts │ │ │ │ ├── Metadata.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── maven-metada.xml │ │ │ │ └── maven-metadata.xsd │ │ │ │ ├── examples │ │ │ │ ├── AsposeExampleSupport.java │ │ │ │ ├── AsposeExampleWizard.java │ │ │ │ └── AsposeExampleWizardPage.java │ │ │ │ └── utils │ │ │ │ ├── AsposeCellsJavaAPI.java │ │ │ │ ├── AsposeConstants.java │ │ │ │ ├── AsposeJavaAPI.java │ │ │ │ ├── AsposeMavenProjectManager.java │ │ │ │ ├── FormatExamples.java │ │ │ │ ├── GitHelper.java │ │ │ │ └── MavenSettings.java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── wb │ │ │ └── swt │ │ │ └── SWTResourceManager.java │ ├── AsposeCellsEclipseSite │ │ ├── .project │ │ └── site.xml │ ├── LICENSE │ ├── README.md │ └── Release Notes.html ├── Aspose-Cells-Java-for-Jython │ ├── README.md │ ├── asposecells │ │ ├── WorkingWithFiles │ │ │ ├── ConvertingExcelFilesToHtml.py │ │ │ ├── ConvertingToMhtmlFiles.py │ │ │ ├── ConvertingToXPS.py │ │ │ ├── ConvertingWorksheetToSVG.py │ │ │ ├── Excel2PdfConversion.py │ │ │ ├── ManagingDocumentProperties.py │ │ │ ├── OpeningFiles.py │ │ │ ├── SavingFiles.py │ │ │ └── WorksheetToImage.py │ │ ├── WorkingWithRowsAndColumns │ │ │ └── RowsAndColumns.py │ │ ├── WorkingWithWorksheets │ │ │ ├── AddingWorksheetstoNewExcelFile.py │ │ │ ├── CopyingAndMovingWorksheets.py │ │ │ ├── DisplayHideGridlines.py │ │ │ ├── DisplayHideScrollBars.py │ │ │ ├── DisplayHideTabs.py │ │ │ ├── FreezePanes.py │ │ │ ├── HideUnhideWorksheet.py │ │ │ ├── PageBreakPreview.py │ │ │ ├── ProtectingWorksheet.py │ │ │ ├── RemovingWorksheetsusingSheetIndex.py │ │ │ ├── RemovingWorksheetsusingSheetName.py │ │ │ ├── SettingPageOptions.py │ │ │ ├── SplitPanes.py │ │ │ ├── UnprotectingPasswordProtectedWorksheet.py │ │ │ ├── UnprotectingSimplyProtectedWorksheet.py │ │ │ └── ZoomFactor.py │ │ ├── __init__$py.class │ │ ├── __init__.py │ │ └── quickstart │ │ │ └── HelloWorld.py │ └── data │ │ ├── WorkingWithFiles │ │ ├── ConvertingExcelFilesToHtml │ │ │ ├── Book1.xls │ │ │ └── OutBook1.html │ │ ├── ConvertingToMhtmlFiles │ │ │ ├── Book1.xlsx │ │ │ └── Book1.xlsx.out.mht │ │ ├── ConvertingToXPS │ │ │ ├── Book1.xls │ │ │ ├── out_printingxps.xps │ │ │ └── out_whole_printingxps │ │ ├── ConvertingWorksheetToSVG │ │ │ ├── Book1.xls │ │ │ ├── Sheet1 │ │ │ ├── Sheet1.out.svg │ │ │ ├── Sheet2 │ │ │ ├── Sheet2.out.svg │ │ │ ├── Sheet3 │ │ │ └── Sheet3.out.svg │ │ ├── Excel2PdfConversion │ │ │ ├── Book1.xls │ │ │ └── OutBook1.pdf │ │ ├── ManagingDocumentProperties │ │ │ ├── Book1.xls │ │ │ ├── Test_Workbook.xls │ │ │ └── Test_Workbook_RemovedProperty.xls │ │ ├── OpeningFiles │ │ │ ├── Book1.xls │ │ │ ├── Book1.xlsx │ │ │ ├── Book1TabDelimited.txt │ │ │ ├── Book2.xls │ │ │ ├── Book3.xml │ │ │ ├── Book_CSV.csv │ │ │ ├── Book_Excel2007.xlsx │ │ │ ├── Book_Excel97_2003.xls │ │ │ └── encryptedBook.xls │ │ ├── SavingFiles │ │ │ ├── Book1.xls │ │ │ ├── book.default.out.xls │ │ │ ├── book.out.xls │ │ │ ├── book.out.xlsx │ │ │ └── book.out.xml │ │ └── WorksheetToImage │ │ │ ├── Book1.xls │ │ │ ├── mysheetimg │ │ │ └── mysheetimg.png │ │ ├── WorkingWithRowsAndColumns │ │ └── RowsAndColumns │ │ │ ├── Autofit Column.xls │ │ │ ├── Autofit Row.xls │ │ │ ├── Book1.xls │ │ │ ├── Copy Rows.xls │ │ │ ├── Delete Column.xls │ │ │ ├── Delete Multiple Rows.xls │ │ │ ├── Delete Row.xls │ │ │ ├── Group Rows And Columns.xls │ │ │ ├── Hide Rows And Columns.xls │ │ │ ├── Insert Column.xls │ │ │ ├── Insert Multiple Rows.xls │ │ │ ├── Insert Row.xls │ │ │ ├── Set Column Width.xls │ │ │ ├── Set Row Height.xls │ │ │ ├── Ungroup Rows And Columns.xls │ │ │ └── Unhide Rows And Columns.xls │ │ ├── WorkingWithWorksheets │ │ ├── AddingWorksheetstoNewExcelFile │ │ │ ├── Book1.xls │ │ │ └── book.out.xls │ │ ├── CopyingAndMovingWorksheets │ │ │ ├── Book1.xls │ │ │ ├── Copy Worksheet.xls │ │ │ └── Move Worksheet.xls │ │ ├── DisplayHideGridlines │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ ├── DisplayHideScrollBars │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ ├── DisplayHideTabs │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ ├── FreezePanes │ │ │ ├── Book1.xls │ │ │ └── book.out.xls │ │ ├── HideUnhideWorksheet │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ ├── PageBreakPreview │ │ │ ├── Book1.xls │ │ │ ├── book.out.xls │ │ │ └── output.xls │ │ ├── ProtectingWorksheet │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ ├── RemovingWorksheetsusingSheetIndex │ │ │ ├── Book1.xls │ │ │ └── book.out.xls │ │ ├── RemovingWorksheetsusingSheetName │ │ │ ├── Book1.xls │ │ │ └── book.out.xls │ │ ├── SettingPageOptions │ │ │ ├── Book1.xls │ │ │ ├── Page Orientation.xls │ │ │ └── Scaling.xls │ │ ├── SplitPanes │ │ │ ├── Book1.xls │ │ │ └── book.out.xls │ │ ├── UnprotectingPasswordProtectedWorksheet │ │ │ ├── book1.xls │ │ │ └── output.xls │ │ ├── UnprotectingSimplyProtectedWorksheet │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ └── ZoomFactor │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ └── quickstart │ │ └── HelloWorld.xls ├── Aspose-Cells-Java-for-NetBeans(Maven) │ ├── LICENSE │ ├── README.md │ ├── Release Notes.html │ └── src │ │ ├── com │ │ └── aspose │ │ │ └── cells │ │ │ └── maven │ │ │ ├── Aspose.png │ │ │ ├── AsposeCellsMavenDescription.html │ │ │ ├── AsposeMavenBasicPanelVisual.form │ │ │ ├── AsposeMavenBasicPanelVisual.java │ │ │ ├── AsposeMavenBasicWizardPanel.java │ │ │ ├── AsposeMavenProject.zip │ │ │ ├── AsposeMavenProjectWizardIterator.java │ │ │ ├── Bundle.properties │ │ │ ├── MavenSettings.java │ │ │ ├── artifacts │ │ │ ├── Metadata.java │ │ │ ├── ObjectFactory.java │ │ │ ├── maven-metada.xml │ │ │ └── maven-metadata.xsd │ │ │ ├── examples │ │ │ ├── AsposeExamplePanel.java │ │ │ ├── AsposeExampleWizard.html │ │ │ ├── AsposeExampleWizardIterator.java │ │ │ ├── AsposeExampleWizardPanel.java │ │ │ ├── Bundle.properties │ │ │ └── CustomMutableTreeNode.java │ │ │ └── utils │ │ │ ├── AbstractTask.java │ │ │ ├── AsposeCellsJavaAPI.java │ │ │ ├── AsposeConstants.java │ │ │ ├── AsposeJavaAPI.java │ │ │ ├── AsposeMavenProjectManager.java │ │ │ ├── FormatExamples.java │ │ │ ├── GitHelper.java │ │ │ └── TasksExecutor.java │ │ └── resources │ │ └── long_banner.png ├── Aspose-Cells-Java-for-Python │ ├── README.md │ ├── WorkingWithFiles │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── WorkingWithRowsAndColumns │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── WorkingWithWorksheets │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── aspose_cells_java_for_python.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── aspose_cells_java_for_python.py │ ├── dist │ │ └── aspose-cells-java-for-python-1.0.tar.gz │ ├── quickstart │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── setup.py │ └── tests │ │ ├── HelloWorld.xls │ │ ├── WorkingWithFiles │ │ ├── ChartToImage │ │ │ └── ChartToImage.py │ │ ├── ConvertingExcelFilesToHtml │ │ │ ├── ConvertingExcelFilesToHtml.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── OutBook1.html │ │ ├── ConvertingToMhtmlFiles │ │ │ ├── ConvertingToMhtmlFiles.py │ │ │ └── data │ │ │ │ ├── Book1.xlsx │ │ │ │ └── Book1.xlsx.out.mht │ │ ├── ConvertingToXPS │ │ │ ├── ConvertingToXPS.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── out_printingxps.xps │ │ ├── ConvertingWorksheetToSVG │ │ │ ├── ConvertingWorksheetToSVG.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ ├── Sheet1.out.svg │ │ │ │ └── Sheet2.out.svg │ │ ├── Excel2PdfConversion │ │ │ ├── Excel2PdfConversion.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── OutBook1.pdf │ │ ├── ManagingDocumentProperties │ │ │ ├── ManagingDocumentProperties.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ ├── Test_Workbook.xls │ │ │ │ └── Test_Workbook_RemovedProperty.xls │ │ ├── OpeningFiles │ │ │ ├── OpeningFiles.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ ├── Book1TabDelimited.txt │ │ │ │ ├── Book2.xls │ │ │ │ ├── Book3.xml │ │ │ │ ├── Book_CSV.csv │ │ │ │ ├── Book_Excel2007.xlsx │ │ │ │ ├── Book_Excel97_2003.xls │ │ │ │ └── encryptedBook.xls │ │ ├── SavingFiles │ │ │ ├── SavingFiles.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ ├── book.default.out.xls │ │ │ │ ├── book.out.xls │ │ │ │ ├── book.out.xlsx │ │ │ │ └── book.out.xml │ │ └── WorksheetToImage │ │ │ ├── WorksheetToImage.py │ │ │ └── data │ │ │ ├── Book1.xls │ │ │ └── mysheetimg.png │ │ ├── WorkingWithRowsAndColumns │ │ └── RowsAndColumns │ │ │ ├── RowsAndColumns.py │ │ │ └── data │ │ │ ├── Book1.xls │ │ │ ├── Delete Column.xls │ │ │ ├── Delete Multiple Rows.xls │ │ │ ├── Delete Row.xls │ │ │ ├── Group Rows And Columns.xls │ │ │ ├── Hide Rows And Columns.xls │ │ │ ├── Insert Column.xls │ │ │ ├── Insert Multiple Rows.xls │ │ │ ├── Insert Row.xls │ │ │ ├── Ungroup Rows And Columns.xls │ │ │ └── Unhide Rows And Columns.xls │ │ ├── WorkingWithWorksheets │ │ ├── AddingWorksheetstoNewExcelFile │ │ │ ├── AddingWorksheetstoNewExcelFile.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── book.out.xls │ │ ├── CopyingAndMovingWorksheets │ │ │ ├── CopyingAndMovingWorksheets.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── Copy Worksheet.xls │ │ ├── DisplayHideGridlines │ │ │ ├── DisplayHideGridlines.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── DisplayHideScrollBars │ │ │ ├── DisplayHideScrollBars.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── DisplayHideTabs │ │ │ ├── DisplayHideTabs.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── FreezePanes │ │ │ ├── FreezePanes.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── book.out.xls │ │ ├── HideUnhideWorksheet │ │ │ ├── HideUnhideWorksheet.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── ManagingPageBreaks │ │ │ ├── ManagingPageBreaks.py │ │ │ └── data │ │ │ │ ├── Add Page Breaks.xls │ │ │ │ ├── Book1.xls │ │ │ │ └── Clear All Page Breaks.xls │ │ ├── PageBreakPreview │ │ │ ├── PageBreakPreview.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── ProtectingWorksheet │ │ │ ├── ProtectingWorksheet.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ ├── RemovingWorksheetsusingSheetIndex │ │ │ ├── RemovingWorksheetsusingSheetIndex.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── book.out.xls │ │ ├── RemovingWorksheetsusingSheetName │ │ │ ├── RemovingWorksheetsusingSheetName.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── book.out.xls │ │ ├── SettingPageOptions │ │ │ ├── SettingPageOptions.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ ├── Page_Orientation.xls │ │ │ │ └── Scaling.xls │ │ ├── SplitPanes │ │ │ ├── SplitPanes.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── book.out.xls │ │ ├── UnprotectingPasswordProtectedWorksheet │ │ │ ├── UnprotectingPasswordProtectedWorksheet.py │ │ │ └── data │ │ │ │ ├── book1.xls │ │ │ │ └── output.xls │ │ ├── UnprotectingSimplyProtectedWorksheet │ │ │ ├── UnprotectingSimplyProtectedWorksheet.py │ │ │ └── data │ │ │ │ ├── Book1.xls │ │ │ │ └── output.xls │ │ └── ZoomFactor │ │ │ ├── ZoomFactor.py │ │ │ └── data │ │ │ ├── Book1.xls │ │ │ └── output.xls │ │ └── quickstart │ │ ├── HelloWorld.py │ │ └── data │ │ └── HelloWorld.xls ├── Aspose_Cells_Java_for_IntelliJ(Maven) │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ ├── Aspose_Pty_Ltd.xml │ │ │ └── profiles_settings.xml │ │ ├── dictionaries │ │ │ └── Adeel_Ilyas.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Aspose.Cells Java for IntelliJ (Maven).iml │ ├── META-INF │ │ └── plugin.xml │ ├── README.md │ ├── lib │ │ └── org.eclipse.jgit-3.4.1.201406201815-r.jar │ └── src │ │ ├── Bundle.properties │ │ ├── com │ │ └── aspose │ │ │ ├── examples │ │ │ ├── AsposeExampleAction.java │ │ │ ├── AsposeExampleCallback.java │ │ │ ├── AsposeExampleDialog.java │ │ │ ├── AsposeExamplePanel.java │ │ │ └── CustomMutableTreeNode.java │ │ │ ├── maven │ │ │ └── apis │ │ │ │ └── artifacts │ │ │ │ ├── Metadata.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── maven-metada.xml │ │ │ │ └── maven-metadata.xsd │ │ │ ├── utils │ │ │ ├── AsposeCellsJavaAPI.java │ │ │ ├── AsposeConstants.java │ │ │ ├── AsposeJavaAPI.java │ │ │ ├── AsposeMavenProjectManager.java │ │ │ ├── AsposeMavenUtil.java │ │ │ ├── FormatExamples.java │ │ │ ├── GitHelper.java │ │ │ └── execution │ │ │ │ ├── CallBackHandler.java │ │ │ │ ├── ModalTaskImpl.java │ │ │ │ └── RunnableHelper.java │ │ │ └── wizards │ │ │ └── maven │ │ │ ├── AsposeIntroWizardStep.java │ │ │ ├── AsposeMavenModuleBuilder.java │ │ │ ├── AsposeMavenModuleBuilderHelper.java │ │ │ ├── AsposeMavenModuleWizardStep.form │ │ │ ├── AsposeMavenModuleWizardStep.java │ │ │ ├── CreateMavenProjectCallback.java │ │ │ ├── DownloadExamplesCallback.java │ │ │ └── MavenId.java │ │ ├── icons │ │ └── AsposeIcons.java │ │ └── resources │ │ ├── aspose.png │ │ ├── asposeMedium.png │ │ ├── asposeSmall.png │ │ ├── long_bannerIntelliJ.png │ │ └── maven │ │ ├── compiler.xml │ │ └── untitled.iml ├── Aspose_Cells_Java_for_PHP │ ├── composer.json │ ├── composer.lock │ ├── src │ │ └── aspose │ │ │ └── cells │ │ │ ├── WorkingWithFiles │ │ │ ├── FileHandlingFeatures │ │ │ │ ├── OpeningFiles.php │ │ │ │ └── SavingFiles.php │ │ │ └── UtilityFeatures │ │ │ │ ├── ChartToImage.php │ │ │ │ ├── ConvertingExcelFilesToHtml.php │ │ │ │ ├── ConvertingToMhtmlFiles.php │ │ │ │ ├── ConvertingToXPS.php │ │ │ │ ├── ConvertingWorksheetToSVG.php │ │ │ │ ├── Excel2PdfConversion.php │ │ │ │ ├── ManagingDocumentProperties.php │ │ │ │ └── WorksheetToImage.php │ │ │ ├── WorkingWithRowsAndColumns │ │ │ └── RowsAndColumns.php │ │ │ ├── WorkingWithWorksheets │ │ │ ├── DisplayFeatures │ │ │ │ ├── DisplayHideGridlines.php │ │ │ │ ├── DisplayHideScrollBars.php │ │ │ │ ├── DisplayHideTabs.php │ │ │ │ ├── FreezePanes.php │ │ │ │ ├── HideUnhideWorksheet.php │ │ │ │ ├── PageBreakPreview.php │ │ │ │ ├── SplitPanes.php │ │ │ │ └── ZoomFactor.php │ │ │ ├── ManagementFeatures │ │ │ │ └── ManagingWorksheets │ │ │ │ │ ├── AddingWorksheetstoNewExcelFile.php │ │ │ │ │ ├── RemovingWorksheetsusingSheetIndex.php │ │ │ │ │ └── RemovingWorksheetsusingSheetName.php │ │ │ ├── PageSetupFeatures │ │ │ │ └── SettingPageOptions.php │ │ │ ├── SecurityFeatures │ │ │ │ ├── ProtectingWorksheet.php │ │ │ │ ├── UnprotectingPasswordProtectedWorksheet.php │ │ │ │ └── UnprotectingSimplyProtectedWorksheet.php │ │ │ └── ValueFeatures │ │ │ │ ├── CopyingAndMovingWorksheets.php │ │ │ │ └── ManagingPageBreaks.php │ │ │ └── quickstart │ │ │ └── HelloWorld.php │ ├── tests │ │ ├── data │ │ │ ├── WorkingWithFiles │ │ │ │ ├── FileHandlingFeatures │ │ │ │ │ ├── OpeningFiles │ │ │ │ │ │ ├── Book1.xls │ │ │ │ │ │ ├── Book1.xlsx │ │ │ │ │ │ ├── Book1TabDelimited.txt │ │ │ │ │ │ ├── Book2.xls │ │ │ │ │ │ ├── Book3.xml │ │ │ │ │ │ ├── Book_CSV.csv │ │ │ │ │ │ ├── Book_Excel2007.xlsx │ │ │ │ │ │ ├── Book_Excel97_2003.xls │ │ │ │ │ │ └── encryptedBook.xls │ │ │ │ │ └── SavingFiles │ │ │ │ │ │ └── book.xls │ │ │ │ └── UtilityFeatures │ │ │ │ │ ├── ChartToImage │ │ │ │ │ └── Chart.emf │ │ │ │ │ ├── ConvertingExcelFilesToHtml │ │ │ │ │ └── Book1.xls │ │ │ │ │ ├── ConvertingToMhtmlFiles │ │ │ │ │ └── Book1.xlsx │ │ │ │ │ ├── ConvertingToXps │ │ │ │ │ └── Book1.xls │ │ │ │ │ ├── ConvertingWorksheetToSvg │ │ │ │ │ └── Template.xlsx │ │ │ │ │ ├── Excel2PdfConversion │ │ │ │ │ └── Book1.xls │ │ │ │ │ ├── ManagingDocumentProperties │ │ │ │ │ ├── Book1.xls │ │ │ │ │ ├── Test_Workbook.xls │ │ │ │ │ └── Test_Workbook_RemovedProperty.xls │ │ │ │ │ └── WorksheetToImage │ │ │ │ │ ├── MyTestBook1.xls │ │ │ │ │ └── mysheetimg0.png │ │ │ ├── WorkingWithRowsAndColumns │ │ │ │ └── RowsAndColumns │ │ │ │ │ └── book1.xls │ │ │ └── WorkingWithWorksheets │ │ │ │ ├── DisplayFeatures │ │ │ │ ├── DisplayHideGridlines │ │ │ │ │ └── book1.xls │ │ │ │ ├── DisplayHideScrollBars │ │ │ │ │ └── book1.xls │ │ │ │ ├── DisplayHideTabs │ │ │ │ │ └── book1.xls │ │ │ │ ├── FreezePanes │ │ │ │ │ └── book.xls │ │ │ │ ├── HideUnhideWorksheet │ │ │ │ │ └── book1.xls │ │ │ │ ├── PageBreakPreview │ │ │ │ │ └── book1.xls │ │ │ │ ├── SplitPanes │ │ │ │ │ └── book.xls │ │ │ │ └── ZoomFactor │ │ │ │ │ └── book1.xls │ │ │ │ ├── ManagementFeatures │ │ │ │ └── ManagingWorksheets │ │ │ │ │ ├── AddingWorksheetstoNewExcelFile │ │ │ │ │ └── book.out.xls │ │ │ │ │ ├── RemovingWorksheetsusingSheetIndex │ │ │ │ │ ├── book.out.xls │ │ │ │ │ └── book.xls │ │ │ │ │ └── RemovingWorksheetsusingSheetName │ │ │ │ │ ├── book.out.xls │ │ │ │ │ └── book.xls │ │ │ │ ├── PageSetupFeatures │ │ │ │ └── SettingPageOptions │ │ │ │ │ ├── Page Orientation.xls │ │ │ │ │ ├── Scaling.xls │ │ │ │ │ └── book1.xls │ │ │ │ ├── SecurityFeatures │ │ │ │ ├── ProtectingWorksheet │ │ │ │ │ ├── book1.xls │ │ │ │ │ └── output.xls │ │ │ │ ├── UnprotectingPasswordProtectedWorksheet │ │ │ │ │ ├── book1.xls │ │ │ │ │ └── output.xls │ │ │ │ └── UnprotectingSimplyProtectedWorksheet │ │ │ │ │ ├── book1.xls │ │ │ │ │ └── output.xls │ │ │ │ └── ValueFeatures │ │ │ │ └── CopyingAndMovingWorksheets │ │ │ │ ├── Copy Worksheet.xls │ │ │ │ ├── Move Worksheet.xls │ │ │ │ └── book1.xls │ │ └── index.php │ └── vendor │ │ ├── autoload.php │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ └── installed.json ├── Aspose_Cells_Java_for_Ruby │ ├── Gemfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── asposecellsjava.gemspec │ ├── config │ │ └── aspose.yml │ ├── data │ │ ├── Book1.xls │ │ └── index.html │ ├── lib │ │ ├── asposecellsjava.rb │ │ └── asposecellsjava │ │ │ ├── asposecells.rb │ │ │ ├── converter.rb │ │ │ ├── copyworksheets.rb │ │ │ ├── displayhidegridlines.rb │ │ │ ├── displayhiderowcolumnheaders.rb │ │ │ ├── displayhidescrollbars.rb │ │ │ ├── displayhidetabs.rb │ │ │ ├── document.rb │ │ │ ├── encrypt.rb │ │ │ ├── freezepanes.rb │ │ │ ├── helloworld.rb │ │ │ ├── hideunhideworksheet.rb │ │ │ ├── managingworksheets.rb │ │ │ ├── pagebreakpreview.rb │ │ │ ├── pagebreaks.rb │ │ │ ├── pagesetup.rb │ │ │ ├── protection.rb │ │ │ ├── rowsandcolumns.rb │ │ │ ├── splitpanes.rb │ │ │ ├── version.rb │ │ │ └── zoomfactor.rb │ └── samples │ │ └── test.rb ├── Aspose_Cells_Java_for_Xlsx4j │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aspose │ │ │ └── cells │ │ │ └── examples │ │ │ ├── Utils.java │ │ │ ├── asposefeatures │ │ │ ├── charts │ │ │ │ ├── convertcharttoimage │ │ │ │ │ └── AsposeChartToImage.java │ │ │ │ ├── createcharts │ │ │ │ │ └── AsposeCreateCharts.java │ │ │ │ └── createpivotcharts │ │ │ │ │ └── AsposePivotChart.java │ │ │ ├── converter │ │ │ │ └── converttoformats │ │ │ │ │ └── AsposeConverter.java │ │ │ ├── datahandling │ │ │ │ ├── calculatesubtotals │ │ │ │ │ └── AsposeCalculateSubTotals.java │ │ │ │ ├── exportdatafromworksheets │ │ │ │ │ └── AsposeExportDataFromWorksheets.java │ │ │ │ ├── findvalueincells │ │ │ │ │ └── AsposeFindValueInCells.java │ │ │ │ ├── formulacalculationengine │ │ │ │ │ └── AsposeFormulaCalculationEngine.java │ │ │ │ ├── importdatatoworksheets │ │ │ │ │ └── AsposeImportDataToWorksheets.java │ │ │ │ ├── sortdata │ │ │ │ │ └── AsposeDataSort.java │ │ │ │ └── tracingprecedentsanddependents │ │ │ │ │ └── AsposeTracingPrecedentsAndDependents.java │ │ │ ├── print │ │ │ │ ├── printworkbook │ │ │ │ │ └── AsposePrintWorkbook.java │ │ │ │ └── setprinttitles │ │ │ │ │ └── AsposeSetPrintTitles.java │ │ │ ├── tables │ │ │ │ └── createpivottable │ │ │ │ │ └── AsposeCreatePivotTable.java │ │ │ └── worksheets │ │ │ │ ├── converttohtml │ │ │ │ └── AsposeConvertToHTML.java │ │ │ │ ├── detectmergecells │ │ │ │ └── AsposeDetectMergeCells.java │ │ │ │ ├── displayandhidescrollbars │ │ │ │ └── AsposeDisplayAndHideScrollbars.java │ │ │ │ ├── displayandhidetabs │ │ │ │ └── AsposeDisplayAndHideTabs.java │ │ │ │ ├── saveeachworksheettopdf │ │ │ │ └── AsposeSaveEachWorksheetToDifferentPDF.java │ │ │ │ └── settabcolor │ │ │ │ └── AsposeSetWorksheetTabColor.java │ │ │ └── featurescomparison │ │ │ ├── workbook │ │ │ ├── createnewspreadsheet │ │ │ │ ├── AsposeNewSpreadSheet.java │ │ │ │ └── Xlsx4jNewSpreadSheet.java │ │ │ └── opensavespreadsheet │ │ │ │ ├── AsposeOpenSaveSpreadSheet.java │ │ │ │ └── Xlsx4jOpenSaveSpreadSheet.java │ │ │ └── worksheet │ │ │ ├── addcomments │ │ │ ├── AsposeAddComments.java │ │ │ └── Xlsx4jAddComments.java │ │ │ ├── addimage │ │ │ ├── AsposeAddImage.java │ │ │ └── Xlsx4jAddImage.java │ │ │ └── adjustheight │ │ │ ├── AsposeHeightAdjustment.java │ │ │ └── Xlsx4jHeightAdjustment.java │ │ └── resources │ │ └── com │ │ └── aspose │ │ └── cells │ │ └── examples │ │ ├── asposefeatures │ │ ├── charts │ │ │ └── createpivotcharts │ │ │ │ └── AsposePivotChart │ │ │ │ └── AsposePivotTable.xls │ │ ├── converter │ │ │ └── converttoformats │ │ │ │ └── AsposeConverter │ │ │ │ └── workbook.xls │ │ ├── datahandling │ │ │ ├── calculatesubtotals │ │ │ │ └── AsposeCalculateSubTotals │ │ │ │ │ └── book1.xls │ │ │ ├── exportdatafromworksheets │ │ │ │ └── AsposeExportDataFromWorksheets │ │ │ │ │ └── workbook.xls │ │ │ ├── findvalueincells │ │ │ │ └── AsposeFindValueInCells │ │ │ │ │ └── workbook.xls │ │ │ ├── sortdata │ │ │ │ └── AsposeDataSort │ │ │ │ │ └── AsposeDataInput.xls │ │ │ └── tracingprecedentsanddependents │ │ │ │ └── AsposeTracingPrecedentsAndDependents │ │ │ │ └── workbook.xls │ │ ├── print │ │ │ └── printworkbook │ │ │ │ └── AsposePrintWorkbook │ │ │ │ └── AsposeDataInput.xls │ │ └── worksheets │ │ │ ├── converttohtml │ │ │ └── AsposeConvertToHTML │ │ │ │ └── book1.xls │ │ │ ├── detectmergecells │ │ │ └── AsposeDetectMergeCells │ │ │ │ └── MergeInput.xls │ │ │ ├── displayandhidescrollbars │ │ │ └── AsposeDisplayAndHideScrollbars │ │ │ │ └── book1.xls │ │ │ ├── displayandhidetabs │ │ │ └── AsposeDisplayAndHideTabs │ │ │ │ └── book1.xls │ │ │ ├── saveeachworksheettopdf │ │ │ └── AsposeSaveEachWorksheetToDifferentPDF │ │ │ │ └── workbook.xlsx │ │ │ └── settabcolor │ │ │ └── AsposeSetWorksheetTabColor │ │ │ └── workbook.xls │ │ └── featurescomparison │ │ ├── workbook │ │ └── opensavespreadsheet │ │ │ ├── AsposeOpenSaveSpreadSheet │ │ │ └── pivot.xlsm │ │ │ └── Xlsx4jOpenSaveSpreadSheet │ │ │ └── pivot.xlsm │ │ └── worksheet │ │ └── addimage │ │ ├── AsposeAddImage │ │ └── greentick.png │ │ └── Xlsx4jAddImage │ │ └── greentick.png └── Aspose_Cells_for_Apache_POI │ └── Aspose-Cells-for-Apache-POI-(Maven) │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── aspose │ │ └── cells │ │ └── examples │ │ ├── Utils.java │ │ ├── asposefeatures │ │ ├── charts │ │ │ ├── AddWordArtWatermarkToChart.java │ │ │ ├── AsposeChangeChartPositionAndSize.java │ │ │ ├── AsposeChartToImage.java │ │ │ ├── AsposeCharts.java │ │ │ └── AsposePivotChart.java │ │ ├── converter │ │ │ └── AsposeConverter.java │ │ ├── datahandling │ │ │ ├── AsposeDataSort.java │ │ │ ├── ExportDataFromWorksheets.java │ │ │ ├── ImportDataToWorksheets.java │ │ │ └── TracingPrecedentsAndDependents.java │ │ ├── formula │ │ │ ├── AsposeCreateSubTotals.java │ │ │ └── AsposeFormulaCalculationEngine.java │ │ ├── merge │ │ │ └── AsposeDetectMergeCells.java │ │ ├── print │ │ │ ├── AsposePrintTitles.java │ │ │ └── AsposePrintWorkbook.java │ │ ├── search │ │ │ └── AsposeFindCellsWithString.java │ │ ├── tables │ │ │ └── AsposeCreatePivotTable.java │ │ ├── workbook │ │ │ └── ReadingCSVFileWithMultipleEncodings.java │ │ └── worksheets │ │ │ ├── AddWatermarkToWorksheet.java │ │ │ ├── AsposeConvertToHTML.java │ │ │ ├── AsposeDetectMergeCells.java │ │ │ ├── AsposeDisplayAndHideScrollbars.java │ │ │ ├── AsposeDisplayAndHideTabs.java │ │ │ ├── AsposeEncryptSpreadsheets.java │ │ │ ├── SaveEachWorksheetToDifferentPDF.java │ │ │ └── SetWorksheetTabColor.java │ │ └── featurescomparison │ │ ├── cellsrowscolumns │ │ ├── addcomments │ │ │ ├── ApacheAddCommentsToCell.java │ │ │ └── AsposeAddCommentsToCell.java │ │ ├── autofitrowandcolumn │ │ │ ├── ApacheAutoFit.java │ │ │ └── AsposeAutoFit.java │ │ ├── cellalignment │ │ │ ├── ApacheCellAlignment.java │ │ │ └── AsposeCellAlignment.java │ │ ├── freezepanes │ │ │ ├── ApacheFreezePanes.java │ │ │ └── AsposeFreezePanes.java │ │ ├── hideunhidecells │ │ │ ├── ApacheHideUnHideCells.java │ │ │ └── AsposeHideUnHideCells.java │ │ ├── iterate │ │ │ ├── ApacheIterateRowsnCols.java │ │ │ └── AsposeIterateRowsnCols.java │ │ ├── mergecells │ │ │ ├── ApacheMergeCells.java │ │ │ └── AsposeMergeCells.java │ │ └── splitpanes │ │ │ ├── ApacheSplitPanes.java │ │ │ └── AsposeSplitPanes.java │ │ ├── datahandling │ │ ├── gettingcellcontent │ │ │ ├── ApacheGetCellContent.java │ │ │ └── AsposeGetCellContent.java │ │ ├── hyperlink │ │ │ ├── ApacheHyperlinks.java │ │ │ └── AsposeHyperlinks.java │ │ └── newlineincells │ │ │ ├── ApacheNewLineinCell.java │ │ │ └── AsposeNewLineinCell.java │ │ ├── formatting │ │ ├── borders │ │ │ ├── ApacheBorders.java │ │ │ └── AsposeBorders.java │ │ ├── colors │ │ │ ├── ApacheWorkingWithColors.java │ │ │ └── AsposeWorkingWithColors.java │ │ └── fonts │ │ │ ├── ApacheWorkingWithFonts.java │ │ │ └── AsposeWorkingWithFonts.java │ │ ├── workbook │ │ ├── adddataincells │ │ │ ├── ApacheInsertCellsData.java │ │ │ └── AsposeInsertCellsData.java │ │ ├── addimages │ │ │ ├── ApacheAddImage.java │ │ │ └── AsposeAddImage.java │ │ ├── createnewworkbook │ │ │ ├── ApacheNewWorkbook.java │ │ │ └── AsposeNewWorkbook.java │ │ ├── fittoonepage │ │ │ ├── ApacheFitSheetToOnePage.java │ │ │ └── AsposeFitSheetToOnePage.java │ │ └── setprintarea │ │ │ ├── ApachePrintArea.java │ │ │ └── AsposePrintArea.java │ │ └── worksheets │ │ ├── copysheetwithinworkbook │ │ ├── ApacheCopySheet.java │ │ └── AsposeCopySheet.java │ │ ├── createnewworksheet │ │ ├── ApacheNewWorksheet.java │ │ └── AsposeNewWorksheet.java │ │ ├── headerandfooter │ │ ├── ApacheHeaderFooter.java │ │ └── AsposeHeaderFooter.java │ │ ├── reordersheets │ │ ├── ApacheMoveSheet.java │ │ └── AsposeMoveSheet.java │ │ └── zoomfactor │ │ ├── ApacheZoom.java │ │ └── AsposeZoom.java │ └── resources │ └── com │ └── aspose │ └── cells │ └── examples │ └── asposefeatures │ ├── charts │ ├── AddWordArtWatermarkToChart │ │ └── AsposeChart.xls │ ├── AsposeChangeChartPositionAndSize │ │ ├── AsposeChangeChart.xlsx │ │ └── AsposeChart.xls │ └── AsposePivotChart │ │ └── AsposePivotTable.xls │ ├── converter │ └── AsposeConverter │ │ └── workbook.xls │ ├── datahandling │ ├── AsposeDataSort │ │ └── AsposeDataInput.xls │ ├── ExportDataFromWorksheets │ │ └── workbook.xls │ └── TracingPrecedentsAndDependents │ │ └── workbook.xls │ ├── formula │ └── AsposeCreateSubTotals │ │ └── book1.xls │ ├── merge │ └── AsposeDetectMergeCells │ │ └── MergeInput.xls │ ├── print │ └── AsposePrintWorkbook │ │ └── AsposeDataInput.xls │ ├── search │ └── AsposeFindCellsWithString │ │ └── workbook.xls │ ├── workbook │ └── ReadingCSVFileWithMultipleEncodings │ │ └── MultiEncoded.csv │ └── worksheets │ ├── AsposeConvertToHTML │ └── book1.xls │ ├── AsposeDetectMergeCells │ └── MergeInput.xls │ ├── AsposeDisplayAndHideScrollbars │ └── book1.xls │ ├── AsposeDisplayAndHideTabs │ └── book1.xls │ ├── AsposeEncryptSpreadsheets │ └── book1.xls │ ├── SaveEachWorksheetToDifferentPDF │ └── workbook.xlsx │ └── SetWorksheetTabColor │ └── workbook.xls ├── README.md └── cells_explorer ├── .classpath ├── .project ├── lib └── aspose-cells-21.10.jar └── src └── com └── aspose └── cells └── examples └── cells_explorer ├── CellsExplorer.java ├── CellsItem.java ├── CellsMain.java ├── GlobalConstant.java ├── MainFrame.java ├── OpenFileDialog.java ├── OpenFileFilter.java └── model ├── CellsNode.java ├── CellsNodeContentUtil.java ├── CellsNodeType.java ├── StyleUtil.java ├── WorkbookUtil.java └── WorksheetUtil.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/.classpath -------------------------------------------------------------------------------- /Examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/.gitignore -------------------------------------------------------------------------------- /Examples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/.project -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/libs/jai_codec-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/libs/jai_codec-1.1.3.jar -------------------------------------------------------------------------------- /Examples/libs/jai_core-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/libs/jai_core-1.1.3.jar -------------------------------------------------------------------------------- /Examples/libs/jai_imageio-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/libs/jai_imageio-1.1.jar -------------------------------------------------------------------------------- /Examples/msaccesslibs/commons-lang-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/msaccesslibs/commons-lang-2.6.jar -------------------------------------------------------------------------------- /Examples/msaccesslibs/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/msaccesslibs/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /Examples/msaccesslibs/hsqldb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/msaccesslibs/hsqldb.jar -------------------------------------------------------------------------------- /Examples/msaccesslibs/jackcess-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/msaccesslibs/jackcess-2.1.6.jar -------------------------------------------------------------------------------- /Examples/msaccesslibs/ucanaccess-4.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/msaccesslibs/ucanaccess-4.0.2.jar -------------------------------------------------------------------------------- /Examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/pom.xml -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/CellsHelperClass/CreateSafeSheetNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/CellsHelperClass/CreateSafeSheetNames.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/CellsHelperClass/GetTextWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/CellsHelperClass/GetTextWidth.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/CellsHelperClass/MergeFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/CellsHelperClass/MergeFiles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/CellsHelperClass/SignificantDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/CellsHelperClass/SignificantDigits.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/AddingLabelControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/AddingLabelControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/AddingPictureToChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/AddingPictureToChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/AddingTextBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/AddingTextBoxControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/Applying3DFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/Applying3DFormat.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ApplyingThemes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ApplyingThemes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ChangeChartPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ChangeChartPosition.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ChangeChartPositionAndSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ChangeChartPositionAndSize.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ChangeTickLabelDirection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ChangeTickLabelDirection.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ChartRendering.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ChartRendering.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/CreateChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/CreateChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/CreateLineWithDataMarkerChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/CreateLineWithDataMarkerChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/GetChartSubTitleForODSFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/GetChartSubTitleForODSFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreateBubbleChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreateBubbleChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreateChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreateChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreateCustomChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreateCustomChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreateLineChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreateLineChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreatePieChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreatePieChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/HowToCreatePyramidChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/HowToCreatePyramidChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/InsertCheckboxInChartSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/InsertCheckboxInChartSheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/MicrosoftTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/MicrosoftTheme.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ModifyLineChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ModifyLineChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ModifyPieChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ModifyPieChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/ReadManipulateExcel2016Charts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/ReadManipulateExcel2016Charts.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SetShapeTypeOfDataLabelsOfChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SetShapeTypeOfDataLabelsOfChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SettingCategoryData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SettingCategoryData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SettingChartArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SettingChartArea.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SettingChartLines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SettingChartLines.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SettingChartsData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SettingChartsData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/SettingTitlesAxes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/SettingTitlesAxes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Charts/UsingSparklines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Charts/UsingSparklines.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AccessAllNamedRanges.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AccessAllNamedRanges.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AccessSpecificNamedRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AccessSpecificNamedRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddValidationArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddValidationArea.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingBordersToCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingBordersToCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingBorderstoRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingBorderstoRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingDataToCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingDataToCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingLinkToAnotherCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingLinkToAnotherCell.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingLinkToExternalFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingLinkToExternalFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingLinkToURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingLinkToURL.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AddingLinkToURLNotEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AddingLinkToURLNotEmpty.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ApplyGradientFillEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ApplyGradientFillEffects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AutofilterBeginsWith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AutofilterBeginsWith.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AutofilterData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AutofilterData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/AutofilterEndsWith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/AutofilterEndsWith.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ChangeTextDirection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ChangeTextDirection.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/CheckCustomNumberFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/CheckCustomNumberFormat.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/CheckIfValidationInCellDropDown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/CheckIfValidationInCellDropDown.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ColorsAndBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ColorsAndBackground.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ColorsAndPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ColorsAndPalette.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ConditionalFormattingatRuntime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ConditionalFormattingatRuntime.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/CreateNamedRangeofCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/CreateNamedRangeofCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/CreateUnionRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/CreateUnionRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/CreatingSubtotals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/CreatingSubtotals.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DataFilteringBlank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DataFilteringBlank.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DataFilteringNonBlank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DataFilteringNonBlank.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DataSorting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DataSorting.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DataSortingWithBackgroundColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DataSortingWithBackgroundColor.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DateDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DateDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/DecimalDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/DecimalDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ExportingDataFromWorksheets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ExportingDataFromWorksheets.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FindingCellsContainingFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FindingCellsContainingFormula.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FindingCellsWithStringOrNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FindingCellsWithStringOrNumber.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FindingwithRegularExpressions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FindingwithRegularExpressions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormatRanges1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormatRanges1.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormatRanges2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormatRanges2.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormattingAColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormattingAColumn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormattingARow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormattingARow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormattingCellsUsingStyleObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormattingCellsUsingStyleObject.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/FormattingSelectedCharacters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/FormattingSelectedCharacters.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/IdentifyCellsinNamedRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/IdentifyCellsinNamedRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ImportCustomObjectsToMergedArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ImportCustomObjectsToMergedArea.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ImportingFromArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ImportingFromArray.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ImportingFromArrayList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ImportingFromArrayList.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ImportingFromJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ImportingFromJson.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/Indentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/Indentation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/InputDataInCellsInRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/InputDataInCellsInRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ListDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ListDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/MakeCellActive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/MakeCellActive.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/MergingCellsInWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/MergingCellsInWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/NamedRangeToSumValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/NamedRangeToSumValues.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/Orientation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/Orientation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/RemoveANamedRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/RemoveANamedRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/RetrievingDataFromCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/RetrievingDataFromCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SelectRangeofCellsinWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SelectRangeofCellsinWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetBorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetBorder.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetComplexFormulaforNamedRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetComplexFormulaforNamedRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetFontColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetFontColor.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetFontSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetFontSize.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetFontStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetFontStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetPattern.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetSimpleFormulaforNamedRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetSimpleFormulaforNamedRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetSubscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetSubscript.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SetSuperscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SetSuperscript.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SettingDisplayFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SettingDisplayFormat.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SettingFontName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SettingFontName.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SettingFontStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SettingFontStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SettingFontUnderlineType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SettingFontUnderlineType.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/SettingStrikeOutEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/SettingStrikeOutEffect.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/ShrinkingToFit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/ShrinkingToFit.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/TextAlignmentHorizontal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/TextAlignmentHorizontal.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/TextAlignmentVertical.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/TextAlignmentVertical.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/TextLengthDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/TextLengthDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/TimeDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/TimeDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/UnMergingCellsInWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/UnMergingCellsInWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/UsingCellName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/UsingCellName.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/UsingRowAndColumnIndexOfCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/UsingRowAndColumnIndexOfCell.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/WholeNumberDataValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/WholeNumberDataValidation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Data/WrapText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Data/WrapText.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AbsolutePositioning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AbsolutePositioning.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingArcControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingArcControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingButtonControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingButtonControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingCheckBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingCheckBoxControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingComboBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingComboBoxControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingLabelControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingLabelControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingLineControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingLineControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingListBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingListBoxControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingPictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingPictures.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingRectangleControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingRectangleControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddingTextBoxControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddingTextBoxControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddinganArrowHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddinganArrowHead.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/AddinganOvalControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/AddinganOvalControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/ExtractingOLEObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/ExtractingOLEObjects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/InsertingOLEObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/InsertingOLEObjects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/NonPrimitiveShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/NonPrimitiveShape.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/ReadColorGlowEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/ReadColorGlowEffect.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/DrawingObjects/ReplaceTextInSmartArt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/DrawingObjects/ReplaceTextInSmartArt.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Files/Handling/OpeningFODSFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Files/Handling/OpeningFODSFiles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Files/Handling/OpeningSXCFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Files/Handling/OpeningSXCFiles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Files/Handling/OpeningTSVFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Files/Handling/OpeningTSVFiles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Formulas/CalculatingFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Formulas/CalculatingFormulas.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Formulas/CalculatingFormulasOnce.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Formulas/CalculatingFormulasOnce.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Formulas/DirectCalculationFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Formulas/DirectCalculationFormula.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Formulas/RegisterAndCallFuncFromAddIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Formulas/RegisterAndCallFuncFromAddIn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/ExcludeUnusedStylesInExcelToHTML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/ExcludeUnusedStylesInExcelToHTML.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/ExportPrintAreaToHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/ExportPrintAreaToHtml.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/ExportSimilarBorderStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/ExportSimilarBorderStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/GetHTML5StringFromCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/GetHTML5StringFromCell.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/PrintHeadings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/PrintHeadings.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/RecognizeSelfClosingTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/RecognizeSelfClosingTags.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/SetScalableColumnWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/SetScalableColumnWidth.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HTML/SetSingleSheetTabNameInHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HTML/SetSingleSheetTabNameInHtml.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HelperClasses/DataObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HelperClasses/DataObject.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/HelperClasses/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/HelperClasses/Product.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Introduction/CreatingWorkbook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Introduction/CreatingWorkbook.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Introduction/IndexToName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Introduction/IndexToName.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Introduction/NameToIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Introduction/NameToIndex.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Introduction/OpeningExistingFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Introduction/OpeningExistingFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/ChangeSourceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/ChangeSourceData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/ClearPivotFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/ClearPivotFields.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/ConsolidationFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/ConsolidationFunctions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/CreatePivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/CreatePivotTable.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/DisablePivotTableRibbon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/DisablePivotTableRibbon.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/GetPivotTableRefreshDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/GetPivotTableRefreshDate.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/ModifyPivotTableQuickStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/ModifyPivotTableQuickStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/PivotTableCustomSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/PivotTableCustomSort.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/PivotTableSaveInODS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/PivotTableSaveInODS.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/PivotTableSortAndHide.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/PivotTableSortAndHide.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/SettingDataFieldFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/SettingDataFieldFormat.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/PivotTables/SettingFormatOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/PivotTables/SettingFormatOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Rendering/RenderUsingTextCrossType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Rendering/RenderUsingTextCrossType.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/AutoFitRowsandColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/AutoFitRowsandColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/ConvertTexttoCols.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/ConvertTexttoCols.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/CopyingColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/CopyingColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/CopyingRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/CopyingRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteAColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteAColumn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteARow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteARow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteMultipleRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/DeleteMultipleRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/GroupingRowsandColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/GroupingRowsandColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/HidingRowsandColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/HidingRowsandColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingAColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingAColumn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingARow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingARow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingMultipleRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/InsertingMultipleRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/SettingHeightAllRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/SettingHeightAllRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/SettingHeightOfRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/SettingHeightOfRow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/SettingWidthOfColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/SettingWidthOfColumn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/SummaryRowBelow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/SummaryRowBelow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/SummaryRowRight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/SummaryRowRight.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RowsAndColumns/UnhidingRowsandColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RowsAndColumns/UnhidingRowsandColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/RunExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/RunExamples.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/ChangeSlicerProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/ChangeSlicerProperties.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/CreateSlicerToExcelTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/CreateSlicerToExcelTable.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/CreateSlicerToPivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/CreateSlicerToPivotTable.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/ExportSlicerToPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/ExportSlicerToPDF.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/FormattingSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/FormattingSlicer.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/RemovingSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/RemovingSlicer.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/RenderingSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/RenderingSlicer.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Slicers/UpdatingSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Slicers/UpdatingSlicer.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/DynamicFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/DynamicFormulas.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/Individual.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/Individual.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/Person.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/Teacher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/Teacher.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/UsingGenericList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/UsingGenericList.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/UsingHTMLProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/UsingHTMLProperty.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/UsingNestedObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/UsingNestedObjects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/SmartMarkers/UsingVariableArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/SmartMarkers/UsingVariableArray.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Tables/ConvertTableToOds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Tables/ConvertTableToOds.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Tables/ConvertTableToRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Tables/ConvertTableToRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Tables/ConvertTableToRangeWithOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Tables/ConvertTableToRangeWithOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Tables/CreatingListObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Tables/CreatingListObject.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Tables/FormataListObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Tables/FormataListObject.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AccessTextBoxName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AccessTextBoxName.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddActiveXControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddActiveXControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddHTMLRichText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddHTMLRichText.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddImageHyperlinks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddImageHyperlinks.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddLibraryReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddLibraryReference.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddPDFBookmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddPDFBookmarks.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddVBAModuleAndCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddVBAModuleAndCode.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/AddWordArtText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/AddWordArtText.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingEncryption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingEncryption.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSubscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSubscript.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSubtotal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSubtotal.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSuperscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ApplyingSuperscript.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CellsIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CellsIterator.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ChangeDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ChangeDataSource.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ChangeHtmlLinkTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ChangeHtmlLinkTarget.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CheckForShapes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CheckForShapes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CheckPassword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CheckPassword.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ColumnsIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ColumnsIterator.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ConversionOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ConversionOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ConvertCSVfiletoXLSX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ConvertCSVfiletoXLSX.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ConvertXLSFileToPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ConvertXLSFileToPDF.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRangeDataOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRangeDataOnly.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRangeStyleOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRangeStyleOnly.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRowHeights.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyRowHeights.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopySparkline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopySparkline.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingMultipleRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingMultipleRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingSingleColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingSingleColumn.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingSingleRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CopyingSingleRow.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CreatePivotTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CreatePivotTable.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CreateSignatureLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CreateSignatureLine.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CreateTableforRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CreateTableforRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CreateWaterfallChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CreateWaterfallChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CreatingStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CreatingStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CustomEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CustomEngine.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CustomLoad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CustomLoad.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CustomSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CustomSettings.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/CustomizingThemes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/CustomizingThemes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DataFormatting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DataFormatting.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DeletingBlankColumns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DeletingBlankColumns.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DeletingBlankRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DeletingBlankRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/Demo.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DetectMergedCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DetectMergedCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DisableExporting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DisableExporting.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DisableTextWrapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DisableTextWrapping.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/DisplayBullets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/DisplayBullets.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/EasyWayForChartSetup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/EasyWayForChartSetup.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExceltoPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExceltoPDF.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExportCharttoSVG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExportCharttoSVG.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExportExceltoHTML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExportExceltoHTML.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExportRangeofCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExportRangeofCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExportStreamProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExportStreamProvider.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExtractOLEObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExtractOLEObjects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ExtractThemeData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ExtractThemeData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/FilePathProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/FilePathProvider.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/FindDataPoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/FindDataPoints.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GenerateDatabarImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GenerateDatabarImage.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetCellObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetCellObject.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetCellStringValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetCellStringValue.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetDataConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetDataConnection.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetEquationText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetEquationText.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetSetThemeColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetSetThemeColors.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/GetWorksheetOfChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/GetWorksheetOfChart.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/HtmlSaveOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/HtmlSaveOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ImportXMLMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ImportXMLMap.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/InsertDeleteRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/InsertDeleteRows.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/LightCellsTest1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/LightCellsTest1.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/LoadOrImportCSVFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/LoadOrImportCSVFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/LoadSourceExcelFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/LoadSourceExcelFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/LoadWorkbook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/LoadWorkbook.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/LockWordArtWatermark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/LockWordArtWatermark.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ModifyExistingStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ModifyExistingStyle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ModifyVBAorMacroCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ModifyVBAorMacroCode.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/PrintComments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/PrintComments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ReadLargeExcelFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ReadLargeExcelFiles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ReadingCSVFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ReadingCSVFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/RemoveActiveXControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/RemoveActiveXControl.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/RemoveUnusedStyles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/RemoveUnusedStyles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ReuseStyleObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ReuseStyleObjects.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/RichTextCustomData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/RichTextCustomData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/RowsIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/RowsIterator.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SaveExcelToPDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SaveExcelToPDF.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SaveODSfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SaveODSfile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SecurePDFDocuments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SecurePDFDocuments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SetCustomFontFolders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SetCustomFontFolders.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SetWorksheetTabColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SetWorksheetTabColor.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/ShowFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/ShowFormulas.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/SortData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/SortData.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/UseThemeColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/UseThemeColors.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/UsingBuiltinStyles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/UsingBuiltinStyles.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/UsingDisplayRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/UsingDisplayRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/UsingExcelTables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/UsingExcelTables.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/WarningCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/WarningCallback.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/TechnicalArticles/WrapTextinCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/TechnicalArticles/WrapTextinCell.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Utils.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/AddWebExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/AddWebExtension.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/AdjustCompressionLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/AdjustCompressionLevel.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/AllowLeadingApostrophe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/AllowLeadingApostrophe.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/CreateSharedWorkbook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/CreateSharedWorkbook.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/DetectLinkTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/DetectLinkTypes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/ExtractEmbeddedMolFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/ExtractEmbeddedMolFile.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/GetHyperlinksInRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/GetHyperlinksInRange.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/GetOdataDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/GetOdataDetails.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/GetRangeWithExternalLinks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/GetRangeWithExternalLinks.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/PrintPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/PrintPreview.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/RegexReplace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/RegexReplace.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Workbook/XAdESSignatureSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Workbook/XAdESSignatureSupport.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/AddThreadedComments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/AddThreadedComments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/AddingPageBreaks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/AddingPageBreaks.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/AdvancedProtection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/AdvancedProtection.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/CenterOnPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/CenterOnPage.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ClearAllPageBreaks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ClearAllPageBreaks.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/CopyWithinWorkbook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/CopyWithinWorkbook.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/CountNumberOfCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/CountNumberOfCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/CutAndPasteCells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/CutAndPasteCells.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/DisplayHideGridlines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/DisplayHideGridlines.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/DisplayHideScrollBars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/DisplayHideScrollBars.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/DisplayTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/DisplayTab.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/EditThreadedComments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/EditThreadedComments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/FitToPagesOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/FitToPagesOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/FreezePanes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/FreezePanes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/GetCellValidationInODS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/GetCellValidationInODS.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/GetPaperWidthHeight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/GetPaperWidthHeight.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/GetWorksheetUniqueId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/GetWorksheetUniqueId.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/HeaderAndFooterMargins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/HeaderAndFooterMargins.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/HideTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/HideTabs.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/HideUnhideWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/HideUnhideWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/InsertImageInHeaderFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/InsertImageInHeaderFooter.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/LockCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/LockCell.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ManagePaperSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ManagePaperSize.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/MoveWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/MoveWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/OtherPrintOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/OtherPrintOptions.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/PageBreakPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/PageBreakPreview.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/PageOrientation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/PageOrientation.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ProtectColumnWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ProtectColumnWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ProtectRowWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ProtectRowWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ProtectingWorksheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ProtectingWorksheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ReadODSBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ReadODSBackground.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ReadThreadedComments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ReadThreadedComments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/RemovePanes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/RemovePanes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/RemoveSpecificPageBreak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/RemoveSpecificPageBreak.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/RemoveThreadedComments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/RemoveThreadedComments.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ScalingFactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ScalingFactor.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetFirstPageNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetFirstPageNumber.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetHeadersAndFooters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetHeadersAndFooters.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetMargins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetMargins.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetODSColoredBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetODSColoredBackground.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetODSGraphicBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetODSGraphicBackground.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetPageOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetPageOrder.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetPrintArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetPrintArea.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetPrintQuality.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetPrintQuality.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SetPrintTitle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SetPrintTitle.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/SplitPanes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/SplitPanes.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/UnprotectProtectSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/UnprotectProtectSheet.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/Worksheets/ZoomFactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/Worksheets/ZoomFactor.java -------------------------------------------------------------------------------- /Examples/src/AsposeCellsExamples/XmlMaps/FindRootElementNameOfXmlMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/AsposeCellsExamples/XmlMaps/FindRootElementNameOfXmlMap.java -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/AddTooltipToHtmlSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/AddTooltipToHtmlSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/AsposeTest.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/AsposeTest.pfx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Blank.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Blank.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/CellsNet46500.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/CellsNet46500.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/CustomFonts/CatsAlphabet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/CustomFonts/CatsAlphabet.ttf -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/EmbeddedMolSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/EmbeddedMolSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Excel95_5.0.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Excel95_5.0.xls -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/GetTextWidthSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/GetTextWidthSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/GraphicBackground.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/GraphicBackground.ods -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/HyperlinksSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/HyperlinksSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/InternationalMacroSheet.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/InternationalMacroSheet.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/LargeSampleFile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/LargeSampleFile.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/LinkTypes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/LinkTypes.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/NonBlank.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/NonBlank.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Note.txt -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/ODataSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/ODataSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/PagesBook1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/PagesBook1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/PivotTableHideAndSortSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/PivotTableHideAndSortSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/PivotTableSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/PivotTableSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Query TXT.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Query TXT.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleBook1.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleBook1.ods -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleBook1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleBook1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleCsv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleCsv.csv -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleExternalReferences.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleExternalReferences.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleFods.fods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleFods.fods -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleJson.json -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleNamedRange.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleNamedRange.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SamplePivotSort.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SamplePivotSort.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SamplePowerQueryFormula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SamplePowerQueryFormula.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleRegexReplace.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleRegexReplace.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleSXC.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleSXC.sxc -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleSlicerChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleSlicerChart.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleSubtotal.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleSubtotal.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleTSVFile.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleTSVFile.tsv -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleTable.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleTableWithQueryTable.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleTableWithQueryTable.xls -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SampleTextboxExcel2016.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SampleTextboxExcel2016.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/SmartArt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/SmartArt.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/Students.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/Students.accdb -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/TestUDF.xlam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/TestUDF.xlam -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/ValidationsSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/ValidationsSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/WebExtensionsSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/WebExtensionsSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/XML Data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/XML Data.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/background.png -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/pivot_table_test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/pivot_table_test.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleAdvancedFilter.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleAdvancedFilter.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleBackgroundFile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleBackgroundFile.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleCalculationMonitor.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleCalculationMonitor.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleCrosssType.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleCrosssType.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleDataValidationRules.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleDataValidationRules.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleDesignerForm.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleDesignerForm.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleEncryptedODSFile.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleEncryptedODSFile.ods -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleErrorExcel2Pdf.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleErrorExcel2Pdf.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleExportCommentsHTML.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleExportCommentsHTML.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleForScalableColumns.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleForScalableColumns.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleFormattingSlicer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleFormattingSlicer.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleGenerateDatabarImage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleGenerateDatabarImage.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleHtmlCrossStringType.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleHtmlCrossStringType.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleInlineCharts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleInlineCharts.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleMacroEnabledWorkbook.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleMacroEnabledWorkbook.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleMergedTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleMergedTemplate.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleNamedRangeTest.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleNamedRangeTest.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleNumbersByAppleInc.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleNumbersByAppleInc.numbers -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleODSFile.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleODSFile.ods -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/samplePivotTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/samplePivotTable.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/samplePreferredParser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/samplePreferredParser.csv -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleRemovingSlicer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleRemovingSlicer.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleRenderOfficeAdd-Ins.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleRenderOfficeAdd-Ins.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleRenderingSlicer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleRenderingSlicer.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleReplaceTagWithText.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleReplaceTagWithText.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleRussianGlobalization.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleRussianGlobalization.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleSelfClosingTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleSelfClosingTags.html -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleSheetId.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleSheetId.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleSingleSheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleSingleSheet.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleSmartArtShape.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleSmartArtShape.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleTextureFill_IsTiling.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleTextureFill_IsTiling.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleToFrontOrBack.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleToFrontOrBack.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleUpdatingSlicer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleUpdatingSlicer.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleValidation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleValidation.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sampleXmlMapQuery.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sampleXmlMapQuery.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sourceFile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sourceFile.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sourcePivotTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sourcePivotTable.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sourceWithCustProps.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sourceWithCustProps.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/01_SourceDirectory/sourseSampleCountryNames.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/01_SourceDirectory/sourseSampleCountryNames.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/CellsHelperClass/Book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/CellsHelperClass/Book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/CellsHelperClass/Book2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/CellsHelperClass/Book2.xls -------------------------------------------------------------------------------- /Examples/src/resources/Charts/ModifyCharts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/ModifyCharts.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Charts/SampleChart.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/SampleChart.ods -------------------------------------------------------------------------------- /Examples/src/resources/Charts/SettingChartLines_out.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/SettingChartLines_out.xls -------------------------------------------------------------------------------- /Examples/src/resources/Charts/book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/Charts/chart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/chart.xls -------------------------------------------------------------------------------- /Examples/src/resources/Charts/excel2016Charts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/excel2016Charts.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Charts/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Charts/logo.jpg -------------------------------------------------------------------------------- /Examples/src/resources/Data/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Data/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Data/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Data/Test.json -------------------------------------------------------------------------------- /Examples/src/resources/Data/book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Data/book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/Data/mergingcells.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Data/mergingcells.xls -------------------------------------------------------------------------------- /Examples/src/resources/Data/sampleSortAsNumber.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Data/sampleSortAsNumber.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/Excel_File0.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/Excel_File0.xls -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/NonPrimitiveShape.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/NonPrimitiveShape.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/logo.jpg -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/sourceGlowEffectColor.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/sourceGlowEffectColor.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/DrawingObjects/tempBook1ole0.Xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/DrawingObjects/tempBook1ole0.Xls -------------------------------------------------------------------------------- /Examples/src/resources/Formulas/Book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Formulas/Book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/Formulas/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Formulas/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Formulas/sample1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Formulas/sample1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Formulas/test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Formulas/test.xls -------------------------------------------------------------------------------- /Examples/src/resources/Introduction/Book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Introduction/Book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/Introduction/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Introduction/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/Book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/Book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/Book2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/Book2.xls -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/Book3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/Book3.xml -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/Book_CSV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/Book_CSV.csv -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/E2PDFC-out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/E2PDFC-out.pdf -------------------------------------------------------------------------------- /Examples/src/resources/LoadingSavingConvertingAndManaging/MyTestBook1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/LoadingSavingConvertingAndManaging/MyTestBook1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/PivotTables/PivotTable.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/PivotTables/PivotTable.xls -------------------------------------------------------------------------------- /Examples/src/resources/PivotTables/sample1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/PivotTables/sample1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/RowsAndColumns/Book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/RowsAndColumns/Book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/RowsAndColumns/BookStyles.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/RowsAndColumns/BookStyles.xls -------------------------------------------------------------------------------- /Examples/src/resources/RowsAndColumns/book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/RowsAndColumns/book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/SmartMarkers/TestSmartMarkers.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/SmartMarkers/TestSmartMarkers.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Tables/List_Object.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Tables/List_Object.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Tables/book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Tables/book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Tables/listBook.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Tables/listBook.xls -------------------------------------------------------------------------------- /Examples/src/resources/Tables/sample.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Tables/sample.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/ATFromCell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/ATFromCell.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/AddWordArtText_out.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/AddWordArtText_out.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/BackImageSheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/BackImageSheet.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/BookStyles.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/BookStyles.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Book_SourceData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Book_SourceData.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Controls.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Controls.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CopyRange.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CopyRange.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CopyRangeData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CopyRangeData.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CopyRangeDataWithFormatting.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CopyRangeDataWithFormatting.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CopyRangeStyleOnly.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CopyRangeStyleOnly.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CustomThemeColor.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CustomThemeColor.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CustomUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CustomUI.xml -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/CustomerReport.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/CustomerReport.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/FormatWorksheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/FormatWorksheet.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/FormatWorksheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/FormatWorksheet.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/ImageHyperlink.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/ImageHyperlink.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/InsertedImage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/InsertedImage.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/LinkCellstoXmlMapElements_in.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/LinkCellstoXmlMapElements_in.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/LoadSourceExcelFile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/LoadSourceExcelFile.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/MergeTrial.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/MergeTrial.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/MultiEncoded.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/MultiEncoded.csv -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/MyTestBook1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/MyTestBook1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/PageSetup.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/PageSetup.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/PieBars.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/PieBars.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/PieChart.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/PieChart.emf -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/PieChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/PieChart.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Sample1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Sample1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SampleChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SampleChart.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SampleCheckCells.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SampleCheckCells.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SampleImage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SampleImage.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SampleInput.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SampleInput.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SampleQT.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SampleQT.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SetPresetWordArtStyle_out.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SetPresetWordArtStyle_out.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Shapes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Shapes.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SheetImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/SheetImage.jpg -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/SheetImage.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Styles.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Styles.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Subscript.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Subscript.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Superscript.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Superscript.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/Test.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/TestBook.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/TestBook.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/TestData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/TestData.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/WebQuerySample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/WebQuerySample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/WorkingWithGlowEffect_in.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/WorkingWithGlowEffect_in.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/WorkingWithShadowEffect_in.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/WorkingWithShadowEffect_in.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/WorkingWithThreeDFormat_in.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/WorkingWithThreeDFormat_in.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/WrappingText.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/WrappingText.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/aspose-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/aspose-logo.jpg -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/aspose-sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/aspose-sample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/autofitmergedcells.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/autofitmergedcells.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/book2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/book2.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/book3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/book3.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/character-spacing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/character-spacing.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/chord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/chord.wav -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/column_chart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/column_chart.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/connection.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/connection.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/copyrangestyle.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/copyrangestyle.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/encryptedBook1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/encryptedBook1.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/image2.jpg -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/imgIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/imgIcon.jpg -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/oleFile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/oleFile.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/pivotChart_test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/pivotChart_test.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/pivotTable_test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/pivotTable_test.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/pivotTable_test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/pivotTable_test.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/report.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample.xls -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample.xlsm -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample.xml -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample1.png -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sample2.jpg -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sampleFilterCharts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sampleFilterCharts.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sampleFilterDifferentObjects.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sampleFilterDifferentObjects.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sampleGetFonts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sampleGetFonts.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/source.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/sourceGradientFill.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/sourceGradientFill.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/testModel Inputs Page1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/testModel Inputs Page1.tif -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/webimagebook.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/webimagebook.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/~$Controls.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/~$Controls.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/TechnicalArticles/~$Shapes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/TechnicalArticles/~$Shapes.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/BkFinance.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/BkFinance.xls -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/BookWithSomeData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/BookWithSomeData.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/FinalBook.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/FinalBook.xls -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/SampleXLSFile_38kb.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/SampleXLSFile_38kb.xls -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/ThreadedCommentsSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/ThreadedCommentsSample.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/book.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/book.xls -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/book1.xls -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/book1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/book1.xlsx -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/footer.jpg -------------------------------------------------------------------------------- /Examples/src/resources/Worksheets/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Examples/src/resources/Worksheets/school.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/AsposeCellsEclipseFeature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/README.md -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/Release Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/Release Notes.html -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Jython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Jython/README.md -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Jython/asposecells/__init__$py.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Jython/asposecells/__init__$py.class -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Jython/asposecells/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Jython/asposecells/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Jython/asposecells/quickstart/HelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Jython/asposecells/quickstart/HelloWorld.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Jython/data/quickstart/HelloWorld.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Jython/data/quickstart/HelloWorld.xls -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/README.md -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/Release Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-NetBeans(Maven)/Release Notes.html -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/README.md -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/WorkingWithFiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/WorkingWithFiles/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/WorkingWithFiles/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/WorkingWithFiles/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/WorkingWithRowsAndColumns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/WorkingWithRowsAndColumns/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/WorkingWithWorksheets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/WorkingWithWorksheets/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/WorkingWithWorksheets/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/WorkingWithWorksheets/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/aspose_cells_java_for_python.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/aspose_cells_java_for_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/aspose_cells_java_for_python.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/quickstart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/quickstart/__init__.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/quickstart/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/quickstart/__init__.pyc -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/setup.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/tests/HelloWorld.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/tests/HelloWorld.xls -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/tests/quickstart/HelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/tests/quickstart/HelloWorld.py -------------------------------------------------------------------------------- /Plugins/Aspose-Cells-Java-for-Python/tests/quickstart/data/HelloWorld.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose-Cells-Java-for-Python/tests/quickstart/data/HelloWorld.xls -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/.name: -------------------------------------------------------------------------------- 1 | Aspose.Cells Java for IntelliJ Maven -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/compiler.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/encodings.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/misc.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/modules.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/vcs.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/.idea/workspace.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/META-INF/plugin.xml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/Bundle.properties -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/icons/AsposeIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/icons/AsposeIcons.java -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/resources/aspose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_IntelliJ(Maven)/src/resources/aspose.png -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/composer.json -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/composer.lock -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/tests/index.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/autoload.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_PHP/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/Gemfile -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/asposecellsjava.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/asposecellsjava.gemspec -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/config/aspose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/config/aspose.yml -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/data/Book1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/data/Book1.xls -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/data/index.html -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/asposecells.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/asposecells.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/converter.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/copyworksheets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/copyworksheets.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/displayhidetabs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/displayhidetabs.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/document.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/encrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/encrypt.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/freezepanes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/freezepanes.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/helloworld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/helloworld.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagebreakpreview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagebreakpreview.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagebreaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagebreaks.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagesetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/pagesetup.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/protection.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/rowsandcolumns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/rowsandcolumns.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/splitpanes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/splitpanes.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/version.rb: -------------------------------------------------------------------------------- 1 | module Asposecellsjava 2 | VERSION = '0.0.2' 3 | end 4 | -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/zoomfactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/lib/asposecellsjava/zoomfactor.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Ruby/samples/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Ruby/samples/test.rb -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Xlsx4j/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Xlsx4j/LICENSE -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Xlsx4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Xlsx4j/README.md -------------------------------------------------------------------------------- /Plugins/Aspose_Cells_Java_for_Xlsx4j/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/Plugins/Aspose_Cells_Java_for_Xlsx4j/pom.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/README.md -------------------------------------------------------------------------------- /cells_explorer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/.classpath -------------------------------------------------------------------------------- /cells_explorer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/.project -------------------------------------------------------------------------------- /cells_explorer/lib/aspose-cells-21.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/lib/aspose-cells-21.10.jar -------------------------------------------------------------------------------- /cells_explorer/src/com/aspose/cells/examples/cells_explorer/CellsItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/src/com/aspose/cells/examples/cells_explorer/CellsItem.java -------------------------------------------------------------------------------- /cells_explorer/src/com/aspose/cells/examples/cells_explorer/CellsMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/src/com/aspose/cells/examples/cells_explorer/CellsMain.java -------------------------------------------------------------------------------- /cells_explorer/src/com/aspose/cells/examples/cells_explorer/MainFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspose-cells/Aspose.Cells-for-Java/HEAD/cells_explorer/src/com/aspose/cells/examples/cells_explorer/MainFrame.java --------------------------------------------------------------------------------