I'm working on an Excel add-in using the JavaScript APIs to build add-ins in Excel 2016.
The problem I have is not to place the url/link in the cell - I rather want to make this url clickable (as you may know it from entering a url into a cell and hit ).
In VBA the solution was this (e.g.):
With Worksheets(1)
.Hyperlinks.Add .Range("E5"), ""
End With
Unfortunately, I can't find a hyperlink function in the JavaScript API. Any idea?
Thanks a lot for any help and best regards Eric
I'm working on an Excel add-in using the JavaScript APIs to build add-ins in Excel 2016.
The problem I have is not to place the url/link in the cell - I rather want to make this url clickable (as you may know it from entering a url into a cell and hit ).
In VBA the solution was this (e.g.):
With Worksheets(1)
.Hyperlinks.Add .Range("E5"), "http://example.microsoft."
End With
Unfortunately, I can't find a hyperlink function in the JavaScript API. Any idea?
Thanks a lot for any help and best regards Eric
Share Improve this question asked Jun 30, 2016 at 14:40 Eric HaasEric Haas 1211 silver badge7 bronze badges2 Answers
Reset to default 7Adding hyperlinks is available in the beta for OfficeJS as of now. You can load the beta version with...
<script type="text/javascript" src="https://appsforoffice.microsoft./lib/beta/hosted/Office.js"></script>
...and get/set hyperlinks with
Set a hyperlink in cell A1:
Excel.run((context) => {
const sheet = context.workbook.worksheets.getActiveWorksheet();
const range = sheet.getRange('A1');
range.hyperlink = {
address: `mailto:[email protected]`,
documentReference: null,
screenTip: null,
textToDisplay: 'Send me a Mail!',
};
return context.sync();
})
Get hyperlink from cell A1:
Excel.run((context) => {
const sheet = context.workbook.worksheets.getActiveWorksheet();
const range = sheet.getRange('A1').load('values, hyperlink');
return context.sync().then(() => console.log(range.hyperlink));
})
API Reference
- OfficeJS Docs for RangeHyperlink
There are two types of hyperlinks in Excel, one that you do in VBA through Hyperlinks.add, and another that you do via a formula. The latter is easily supported by the Excel JavaScript object model.
Excel.run(function (ctx) {
var firstCellInSelection = ctx.workbook.getSelectedRange().getCell(0, 0);
firstCellInSelection.formulas = [['=HYPERLINK("http://www.bing.")']];
return ctx.sync();
}).catch(function (error) {
console.log(error);
});
~ Michael Zlatkovsky, Developer on Office Extensibility Team, MSFT
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743612156a4478433.html
评论列表(0条)