Created
October 30, 2020 18:34
-
-
Save Ercenk/573cf30865e54ff0702f3cbf7c33359f to your computer and use it in GitHub Desktop.
Creates a table.
This file contains hidden or 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 a table | |
description: Creates a table. | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#create-table").click(() => tryCatch(createTable)); | |
async function createTable() { | |
await Excel.run(async (context) => { | |
context.workbook.worksheets.getItemOrNullObject("Sample").delete(); | |
const sheet = context.workbook.worksheets.add("Sample"); | |
const expensesTable = sheet.tables.add("A1:D1", true /*hasHeaders*/); | |
expensesTable.name = "ExpensesTable"; | |
expensesTable.getHeaderRowRange().values = [["Date", "Merchant", "Category", "Amount"]]; | |
expensesTable.rows.add(null /*add at the end*/, [ | |
["1/1/2017", "The Phone Company", "Communications", "$120"], | |
["1/2/2017", "Northwind Electric Cars", "Transportation", "$142"], | |
["1/5/2017", "Best For You Organics Company", "Groceries", "$27"], | |
["1/10/2017", "Coho Vineyard", "Restaurant", "$33"], | |
["1/11/2017", "Bellows College", "Education", "$350"], | |
["1/15/2017", "Trey Research", "Other", "$135"], | |
["1/15/2017", "Best For You Organics Company", "Groceries", "$97"] | |
]); | |
sheet.getUsedRange().format.autofitColumns(); | |
sheet.getUsedRange().format.autofitRows(); | |
sheet.activate(); | |
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 a table.</p> | |
</section> | |
<section class="samples ms-font-m"> | |
<h3>Try it out</h3> | |
<button id="create-table" class="ms-Button"> | |
<span class="ms-Button-label">Create table</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