├── README.md ├── editorIntelliSense ├── ExcelLatest.txt ├── OfficeCommon.txt ├── OfficeDocument.txt └── WordLatest.txt ├── excel-snippets ├── addAxisTitle.js ├── addChart.js ├── addChartData.js ├── addChartTitle.js ├── addSeriesNameToDataLabels.js ├── addTableRow.js ├── calculateWorkbooks.js ├── changeChartBackgroundColor.js ├── changeDataLabelsPosition.js ├── changeSeriesBorderColor.js ├── changeSeriesFillColor.js ├── clearRange.js ├── clearRowBackground.js ├── configureAxis.js ├── createNewChart.js ├── createTableFromRange.js ├── createWorksheet.js ├── deleteActiveWorksheet.js ├── deleteAxisTitle.js ├── deleteChart.js ├── deleteChartTitle.js ├── deleteTableRow.js ├── enumerateTableRows.js ├── fancyPieChart.js ├── formatChartTitle.js ├── formatLargestRow.js ├── formatTableRow.js ├── formatTableRows.js ├── getActiveWorksheet.js ├── getChartByName.js ├── getChartTitle.js ├── getChartsInWorksheet.js ├── getFormulasInRange.js ├── getSelectedRange.js ├── getTablesInWorkbook.js ├── getValuesInRange.js ├── getWorksheetFromRange.js ├── getWorksheetsInWorkbook.js ├── insertRange.js ├── readCalculationMode.js ├── reference.js ├── renameChart.js ├── resizeChart.js ├── samples.json ├── selectNamedRange.js ├── setChartDataSource.js ├── setChartPosition.js ├── setFormulaInRange.js ├── setFormulasInRange.js ├── setNumberFormat.js ├── setSeriesBy.js ├── setValueInRange.js ├── setValuesInRange.js ├── showDataLabels.js ├── showLegend.js ├── showMajorGridlines.js ├── tableWithEventHandler.js └── upperCaseRange.js ├── index.html ├── license.txt ├── partials ├── add-in.html └── snippet-browser.html ├── script ├── app.js └── codeEditor.js ├── snippet-explorer-excelJS.xml ├── snippet-explorer-wordJS.xml ├── web.config ├── word-snippets ├── _template.js ├── bodyClear.js ├── bodygetHtml.js ├── bodygetOoxml.js ├── bodygetText.js ├── bodyinsertBreak.js ├── bodyinsertContentControl.js ├── bodyinsertFileFromBase64.js ├── bodyinsertHtml.js ├── bodyinsertOoxml.js ├── bodyinsertParagraph.js ├── bodyinsertText.js ├── bodyload.js ├── bodysearch.js ├── bodyselect.js ├── contentControlClear.js ├── contentControlCreate.js ├── contentControlDelete.js ├── contentControlGetAllControls.js ├── contentControlGetByTag.js ├── contentControlGetHtml.js ├── contentControlGetOoxml.js ├── contentControlInsertBreak.js ├── contentControlInsertHtml.js ├── contentControlInsertOoxml.js ├── contentControlInsertParagraph.js ├── contentControlInsertText.js ├── contentControlLoad.js ├── contentControlSelect.js ├── contentControlWrapParagraphs.js ├── documentInsertHTMLIntoSelection.js ├── documentInsertOOXMLIntoSelection.js ├── documentInsertTextIntoSelection.js ├── documentLoadContentControls.js ├── documentSave.js ├── documentWrapSelectionContentControl.js ├── fontChange.js ├── fontChangeColor.js ├── fontChangeSize.js ├── fontHighlight.js ├── fontMakeBold.js ├── fontMakeUnderline.js ├── fontSetParagraphFont.js ├── fontStrikethrough.js ├── paragraphClear.js ├── paragraphDelete.js ├── paragraphFormatLineSpacing.js ├── paragraphGetAllParagraphs.js ├── paragraphgetHTML.js ├── paragraphgetOoxml.js ├── paragraphinsertBreak.js ├── paragraphinsertContentControl.js ├── paragraphinsertFileFromBase64.js ├── paragraphinsertHtml.js ├── paragraphinsertInlinePictureFromBase64.js ├── paragraphinsertOoxml.js ├── paragraphinsertParagraph.js ├── paragraphinsertParagraphEndBody.js ├── paragraphinsertText.js ├── paragraphload.js ├── paragraphselect.js ├── rangeClear.js ├── rangeDelete.js ├── rangegetHTML.js ├── rangegetOOXML.js ├── rangeinsertBreak.js ├── rangeinsertContentControl.js ├── rangeinsertFileFromBase64.js ├── rangeinsertHtml.js ├── rangeinsertOoxml.js ├── rangeinsertParagraph.js ├── rangeinsertText.js ├── rangeload.js ├── rangeselect.js ├── samples.json ├── searchIgnorePunctuation.js ├── searchPrefix.js ├── searchSuffix.js ├── searchText.js ├── searchWholeWord.js ├── searchWildCard.js ├── sectionGetParagraphs.js └── sectionInsertTextHeader.js └── worker-loader-proxy.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/README.md -------------------------------------------------------------------------------- /editorIntelliSense/ExcelLatest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/editorIntelliSense/ExcelLatest.txt -------------------------------------------------------------------------------- /editorIntelliSense/OfficeCommon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/editorIntelliSense/OfficeCommon.txt -------------------------------------------------------------------------------- /editorIntelliSense/OfficeDocument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/editorIntelliSense/OfficeDocument.txt -------------------------------------------------------------------------------- /editorIntelliSense/WordLatest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/editorIntelliSense/WordLatest.txt -------------------------------------------------------------------------------- /excel-snippets/addAxisTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addAxisTitle.js -------------------------------------------------------------------------------- /excel-snippets/addChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addChart.js -------------------------------------------------------------------------------- /excel-snippets/addChartData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addChartData.js -------------------------------------------------------------------------------- /excel-snippets/addChartTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addChartTitle.js -------------------------------------------------------------------------------- /excel-snippets/addSeriesNameToDataLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addSeriesNameToDataLabels.js -------------------------------------------------------------------------------- /excel-snippets/addTableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/addTableRow.js -------------------------------------------------------------------------------- /excel-snippets/calculateWorkbooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/calculateWorkbooks.js -------------------------------------------------------------------------------- /excel-snippets/changeChartBackgroundColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/changeChartBackgroundColor.js -------------------------------------------------------------------------------- /excel-snippets/changeDataLabelsPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/changeDataLabelsPosition.js -------------------------------------------------------------------------------- /excel-snippets/changeSeriesBorderColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/changeSeriesBorderColor.js -------------------------------------------------------------------------------- /excel-snippets/changeSeriesFillColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/changeSeriesFillColor.js -------------------------------------------------------------------------------- /excel-snippets/clearRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/clearRange.js -------------------------------------------------------------------------------- /excel-snippets/clearRowBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/clearRowBackground.js -------------------------------------------------------------------------------- /excel-snippets/configureAxis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/configureAxis.js -------------------------------------------------------------------------------- /excel-snippets/createNewChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/createNewChart.js -------------------------------------------------------------------------------- /excel-snippets/createTableFromRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/createTableFromRange.js -------------------------------------------------------------------------------- /excel-snippets/createWorksheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/createWorksheet.js -------------------------------------------------------------------------------- /excel-snippets/deleteActiveWorksheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/deleteActiveWorksheet.js -------------------------------------------------------------------------------- /excel-snippets/deleteAxisTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/deleteAxisTitle.js -------------------------------------------------------------------------------- /excel-snippets/deleteChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/deleteChart.js -------------------------------------------------------------------------------- /excel-snippets/deleteChartTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/deleteChartTitle.js -------------------------------------------------------------------------------- /excel-snippets/deleteTableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/deleteTableRow.js -------------------------------------------------------------------------------- /excel-snippets/enumerateTableRows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/enumerateTableRows.js -------------------------------------------------------------------------------- /excel-snippets/fancyPieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/fancyPieChart.js -------------------------------------------------------------------------------- /excel-snippets/formatChartTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/formatChartTitle.js -------------------------------------------------------------------------------- /excel-snippets/formatLargestRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/formatLargestRow.js -------------------------------------------------------------------------------- /excel-snippets/formatTableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/formatTableRow.js -------------------------------------------------------------------------------- /excel-snippets/formatTableRows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/formatTableRows.js -------------------------------------------------------------------------------- /excel-snippets/getActiveWorksheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getActiveWorksheet.js -------------------------------------------------------------------------------- /excel-snippets/getChartByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getChartByName.js -------------------------------------------------------------------------------- /excel-snippets/getChartTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getChartTitle.js -------------------------------------------------------------------------------- /excel-snippets/getChartsInWorksheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getChartsInWorksheet.js -------------------------------------------------------------------------------- /excel-snippets/getFormulasInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getFormulasInRange.js -------------------------------------------------------------------------------- /excel-snippets/getSelectedRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getSelectedRange.js -------------------------------------------------------------------------------- /excel-snippets/getTablesInWorkbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getTablesInWorkbook.js -------------------------------------------------------------------------------- /excel-snippets/getValuesInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getValuesInRange.js -------------------------------------------------------------------------------- /excel-snippets/getWorksheetFromRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getWorksheetFromRange.js -------------------------------------------------------------------------------- /excel-snippets/getWorksheetsInWorkbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/getWorksheetsInWorkbook.js -------------------------------------------------------------------------------- /excel-snippets/insertRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/insertRange.js -------------------------------------------------------------------------------- /excel-snippets/readCalculationMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/readCalculationMode.js -------------------------------------------------------------------------------- /excel-snippets/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/reference.js -------------------------------------------------------------------------------- /excel-snippets/renameChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/renameChart.js -------------------------------------------------------------------------------- /excel-snippets/resizeChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/resizeChart.js -------------------------------------------------------------------------------- /excel-snippets/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/samples.json -------------------------------------------------------------------------------- /excel-snippets/selectNamedRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/selectNamedRange.js -------------------------------------------------------------------------------- /excel-snippets/setChartDataSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setChartDataSource.js -------------------------------------------------------------------------------- /excel-snippets/setChartPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setChartPosition.js -------------------------------------------------------------------------------- /excel-snippets/setFormulaInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setFormulaInRange.js -------------------------------------------------------------------------------- /excel-snippets/setFormulasInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setFormulasInRange.js -------------------------------------------------------------------------------- /excel-snippets/setNumberFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setNumberFormat.js -------------------------------------------------------------------------------- /excel-snippets/setSeriesBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setSeriesBy.js -------------------------------------------------------------------------------- /excel-snippets/setValueInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setValueInRange.js -------------------------------------------------------------------------------- /excel-snippets/setValuesInRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/setValuesInRange.js -------------------------------------------------------------------------------- /excel-snippets/showDataLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/showDataLabels.js -------------------------------------------------------------------------------- /excel-snippets/showLegend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/showLegend.js -------------------------------------------------------------------------------- /excel-snippets/showMajorGridlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/showMajorGridlines.js -------------------------------------------------------------------------------- /excel-snippets/tableWithEventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/tableWithEventHandler.js -------------------------------------------------------------------------------- /excel-snippets/upperCaseRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/excel-snippets/upperCaseRange.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/index.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/license.txt -------------------------------------------------------------------------------- /partials/add-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/partials/add-in.html -------------------------------------------------------------------------------- /partials/snippet-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/partials/snippet-browser.html -------------------------------------------------------------------------------- /script/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/script/app.js -------------------------------------------------------------------------------- /script/codeEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/script/codeEditor.js -------------------------------------------------------------------------------- /snippet-explorer-excelJS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/snippet-explorer-excelJS.xml -------------------------------------------------------------------------------- /snippet-explorer-wordJS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/snippet-explorer-wordJS.xml -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/web.config -------------------------------------------------------------------------------- /word-snippets/_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/_template.js -------------------------------------------------------------------------------- /word-snippets/bodyClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyClear.js -------------------------------------------------------------------------------- /word-snippets/bodygetHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodygetHtml.js -------------------------------------------------------------------------------- /word-snippets/bodygetOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodygetOoxml.js -------------------------------------------------------------------------------- /word-snippets/bodygetText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodygetText.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertBreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertBreak.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertContentControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertContentControl.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertFileFromBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertFileFromBase64.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertHtml.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertOoxml.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertParagraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertParagraph.js -------------------------------------------------------------------------------- /word-snippets/bodyinsertText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyinsertText.js -------------------------------------------------------------------------------- /word-snippets/bodyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyload.js -------------------------------------------------------------------------------- /word-snippets/bodysearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodysearch.js -------------------------------------------------------------------------------- /word-snippets/bodyselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/bodyselect.js -------------------------------------------------------------------------------- /word-snippets/contentControlClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlClear.js -------------------------------------------------------------------------------- /word-snippets/contentControlCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlCreate.js -------------------------------------------------------------------------------- /word-snippets/contentControlDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlDelete.js -------------------------------------------------------------------------------- /word-snippets/contentControlGetAllControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlGetAllControls.js -------------------------------------------------------------------------------- /word-snippets/contentControlGetByTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlGetByTag.js -------------------------------------------------------------------------------- /word-snippets/contentControlGetHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlGetHtml.js -------------------------------------------------------------------------------- /word-snippets/contentControlGetOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlGetOoxml.js -------------------------------------------------------------------------------- /word-snippets/contentControlInsertBreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlInsertBreak.js -------------------------------------------------------------------------------- /word-snippets/contentControlInsertHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlInsertHtml.js -------------------------------------------------------------------------------- /word-snippets/contentControlInsertOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlInsertOoxml.js -------------------------------------------------------------------------------- /word-snippets/contentControlInsertParagraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlInsertParagraph.js -------------------------------------------------------------------------------- /word-snippets/contentControlInsertText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlInsertText.js -------------------------------------------------------------------------------- /word-snippets/contentControlLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlLoad.js -------------------------------------------------------------------------------- /word-snippets/contentControlSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlSelect.js -------------------------------------------------------------------------------- /word-snippets/contentControlWrapParagraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/contentControlWrapParagraphs.js -------------------------------------------------------------------------------- /word-snippets/documentInsertHTMLIntoSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentInsertHTMLIntoSelection.js -------------------------------------------------------------------------------- /word-snippets/documentInsertOOXMLIntoSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentInsertOOXMLIntoSelection.js -------------------------------------------------------------------------------- /word-snippets/documentInsertTextIntoSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentInsertTextIntoSelection.js -------------------------------------------------------------------------------- /word-snippets/documentLoadContentControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentLoadContentControls.js -------------------------------------------------------------------------------- /word-snippets/documentSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentSave.js -------------------------------------------------------------------------------- /word-snippets/documentWrapSelectionContentControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/documentWrapSelectionContentControl.js -------------------------------------------------------------------------------- /word-snippets/fontChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontChange.js -------------------------------------------------------------------------------- /word-snippets/fontChangeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontChangeColor.js -------------------------------------------------------------------------------- /word-snippets/fontChangeSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontChangeSize.js -------------------------------------------------------------------------------- /word-snippets/fontHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontHighlight.js -------------------------------------------------------------------------------- /word-snippets/fontMakeBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontMakeBold.js -------------------------------------------------------------------------------- /word-snippets/fontMakeUnderline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontMakeUnderline.js -------------------------------------------------------------------------------- /word-snippets/fontSetParagraphFont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontSetParagraphFont.js -------------------------------------------------------------------------------- /word-snippets/fontStrikethrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/fontStrikethrough.js -------------------------------------------------------------------------------- /word-snippets/paragraphClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphClear.js -------------------------------------------------------------------------------- /word-snippets/paragraphDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphDelete.js -------------------------------------------------------------------------------- /word-snippets/paragraphFormatLineSpacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphFormatLineSpacing.js -------------------------------------------------------------------------------- /word-snippets/paragraphGetAllParagraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphGetAllParagraphs.js -------------------------------------------------------------------------------- /word-snippets/paragraphgetHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphgetHTML.js -------------------------------------------------------------------------------- /word-snippets/paragraphgetOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphgetOoxml.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertBreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertBreak.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertContentControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertContentControl.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertFileFromBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertFileFromBase64.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertHtml.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertInlinePictureFromBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertInlinePictureFromBase64.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertOoxml.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertParagraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertParagraph.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertParagraphEndBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertParagraphEndBody.js -------------------------------------------------------------------------------- /word-snippets/paragraphinsertText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphinsertText.js -------------------------------------------------------------------------------- /word-snippets/paragraphload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphload.js -------------------------------------------------------------------------------- /word-snippets/paragraphselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/paragraphselect.js -------------------------------------------------------------------------------- /word-snippets/rangeClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeClear.js -------------------------------------------------------------------------------- /word-snippets/rangeDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeDelete.js -------------------------------------------------------------------------------- /word-snippets/rangegetHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangegetHTML.js -------------------------------------------------------------------------------- /word-snippets/rangegetOOXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangegetOOXML.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertBreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertBreak.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertContentControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertContentControl.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertFileFromBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertFileFromBase64.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertHtml.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertOoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertOoxml.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertParagraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertParagraph.js -------------------------------------------------------------------------------- /word-snippets/rangeinsertText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeinsertText.js -------------------------------------------------------------------------------- /word-snippets/rangeload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeload.js -------------------------------------------------------------------------------- /word-snippets/rangeselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/rangeselect.js -------------------------------------------------------------------------------- /word-snippets/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/samples.json -------------------------------------------------------------------------------- /word-snippets/searchIgnorePunctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchIgnorePunctuation.js -------------------------------------------------------------------------------- /word-snippets/searchPrefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchPrefix.js -------------------------------------------------------------------------------- /word-snippets/searchSuffix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchSuffix.js -------------------------------------------------------------------------------- /word-snippets/searchText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchText.js -------------------------------------------------------------------------------- /word-snippets/searchWholeWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchWholeWord.js -------------------------------------------------------------------------------- /word-snippets/searchWildCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/searchWildCard.js -------------------------------------------------------------------------------- /word-snippets/sectionGetParagraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/sectionGetParagraphs.js -------------------------------------------------------------------------------- /word-snippets/sectionInsertTextHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/word-snippets/sectionInsertTextHeader.js -------------------------------------------------------------------------------- /worker-loader-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/office-js-snippet-explorer/HEAD/worker-loader-proxy.js --------------------------------------------------------------------------------