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
sdfdsqqsdfsqfdsq |
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 a column clustered chart | |
description: Create a column clustered chart | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |+ | |
$("#setup").click(setup); | |
$("#create-column-clustered-chart").click(createChart); | |
async function createChart() { |
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: Blank snippet | |
description: '' | |
author: chengtie | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#openSite").click(openSite); | |
async function openSite() { |
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: Blank snippet | |
description: '' | |
author: chengtie | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#openSite").click(openSite); | |
$("#getLocalMessageFromSiteToHost").click(getLocalMessageFromSiteToHost); |
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: Blank snippet | |
description: '' | |
author: chengtie | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
$("#openSite").click(openSite); | |
$("#getLocalMessageFromSiteToHost").click(getLocalMessageFromSiteToHost); |
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: Basic API call (TypeScript) | |
description: Performs a basic Excel API call using TypeScript. | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(run)); | |
async function run() { | |
await Excel.run(async (context) => { |
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
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; |
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 (3)' | |
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) => { |
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) => { |
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 (5)' | |
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) => { |
OlderNewer