Created
December 22, 2021 21:04
-
-
Save chengtie/929b124a1b3c2ddc890f1927fc217bef to your computer and use it in GitHub Desktop.
Creates, accesses, and removes named items in a worksheet.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Create, access, and remove (4)' | |
description: 'Creates, accesses, and removes named items in a worksheet.' | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#test").click(() => tryCatch(test)); | |
async function test() { | |
await Excel.run(async (context) => { | |
const sheet = context.workbook.worksheets.getActiveWorksheet(); | |
// setup cell values | |
sheet.getRange("A2").values = [[3000]]; | |
sheet.getRange("A3").values = [[1000]]; | |
sheet.getRange("A4").values = [[3000]]; | |
sheet.getRange("A5").values = [[4000]]; | |
await context.sync(); | |
// clean names: | |
const name1 = sheet.names.getItemOrNullObject("name1"); | |
const name2 = sheet.names.getItemOrNullObject("name2"); | |
const name3 = sheet.names.getItemOrNullObject("name3"); | |
const name4 = sheet.names.getItemOrNullObject("name4"); | |
name1.load(); | |
name2.load(); | |
name3.load(); | |
name4.load(); | |
await context.sync(); | |
if (name1.value) name1.delete(); | |
if (name2.value) name2.delete(); | |
if (name3.value) name3.delete(); | |
if (name4.value) name4.delete(); | |
await context.sync(); | |
// add names: | |
sheet.names.add("name1", "=100+200"); | |
sheet.names.add("name2","=sequence(2)"); | |
sheet.names.add("name3","={6,5,4;3,2,1}"); | |
sheet.names.add("name4","=unique(Sheet1!$A$2:$A$5") | |
await context.sync(); | |
// show names: | |
const namedItems = context.workbook.worksheets.getActiveWorksheet().names.load(); | |
await context.sync(); | |
console.log("This worksheet contains " + namedItems.items.length + " named items."); | |
for (let i = 0; i < namedItems.items.length; i++) { | |
console.log(JSON.stringify(namedItems.items[i])) + "\n"; | |
} | |
await context.sync(); | |
}); | |
} | |
/** Default helper for invoking an action and handling errors. */ | |
async function tryCatch(callback) { | |
try { | |
await callback(); | |
} catch (error) { | |
// Note: In a production add-in, you'd want to notify the user through your add-in's UI. | |
console.error(error); | |
} | |
} | |
language: typescript | |
template: | |
content: | | |
<section class="ms-font-m"> | |
<p>This sample shows how to create, access, and delete named items.</p> | |
</section> | |
<section class="samples ms-font-m"> | |
<button id="test" class="ms-Button"> | |
<span class="ms-Button-label">test</span> | |
</button> | |
</section> | |
language: html | |
style: | |
content: |- | |
section.samples { | |
margin-top: 20px; | |
} | |
section.samples .ms-Button, section.setup .ms-Button { | |
display: block; | |
margin-bottom: 5px; | |
margin-left: 20px; | |
min-width: 80px; | |
} | |
language: css | |
libraries: | | |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js | |
@types/office-js | |
[email protected]/dist/css/fabric.min.css | |
[email protected]/dist/css/fabric.components.min.css | |
[email protected]/client/core.min.js | |
@types/core-js | |
[email protected] | |
@types/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment