I have created a taskpane addin for word that runs a search and will select the text between two search results. Until a couple of days ago the following code was running successfully:
function onExpandTestClick() {
var textToFind = "Word",
range;
return Word.run(function(context) {
var searchResults = context.document.body.search(textToFind, { matchWildCards: false });
context.load(searchResults, "text");
return context.sync()
.then(function() {
range = searchResults.items[0].getRange("End");
var rangeEnd = searchResults.items[1].getRange("Start");
range.expandTo(rangeEnd);
context.load(range, 'text');
return context.sync();
})
.then(function() {
range.select();
return context.sync();
});
})
.catch(function (error) {
console.log('Error: ' + JSON.stringify(error));
}
});
}
However now the following error is being thrown:
Error: {"name":"OfficeExtension.Error","code":"InvalidArgument","message":"InvalidArgument","traceMessages":[],"debugInfo":{"errorLocation":""},"stack":"InvalidArgument: InvalidArgument\n at Anonymous function (https://appsforoffice.microsoft.com/lib/beta/hosted/word-win32-16.01.js:19:183512)\n at pi (https://appsforoffice.microsoft.com/lib/beta/hosted/word-win32-16.01.js:19:198624)\n at ht (https://appsforoffice.microsoft.com/lib/beta/hosted/word-win32-16.01.js:19:198711)\n at g (https://appsforoffice.microsoft.com/lib/beta/hosted/word-win32-16.01.js:19:198531)\n at l (https://appsforoffice.microsoft.com/lib/beta/hosted/word-win32-16.01.js:19:197117)"}
I am using the PreviewCDN as recommended here https://github.com/OfficeDev/office-js-docs/tree/WordJs_1.3_Openspec and am running office version 16.0.7167.2040
Is this the correct way to use the range.expandTo
method? Or has something changed in the api?