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: Cell Changed with Data Validation | |
| description: Cell Changed with Data Validation | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#register-click-handler").click(() => tryCatch(registerClickHandler)); | |
| $("#disable-click-handler").click(() => tryCatch(remove)); | |
| const myCellAddress = "E2"; |
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: Cell Changed with Data Validation | |
| description: Cell Changed with Data Validation | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#register-click-handler").click(() => tryCatch(registerClickHandler)); | |
| const myCellAddress = "E2"; |
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: Basic API call (TypeScript) | |
| description: Performs a basic PowerPoint API call using TypeScript | |
| host: POWERPOINT | |
| api_set: {} | |
| script: | |
| content: > | |
| $("#tagged").click(() => tryCatch(tagged)); | |
| $("#refresh").click(() => tryCatch(refresh)); |
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: Basic API call (Office 2013) | |
| description: >- | |
| Executes a basic PowerPoint API call using the "common API" syntax (compatible | |
| with Office 2013). | |
| host: POWERPOINT | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(run); |
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: Basic API call (Office 2013) | |
| description: >- | |
| Executes a basic PowerPoint API call using the "common API" syntax (compatible | |
| with Office 2013). | |
| host: POWERPOINT | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(run); |
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: Test Read function | |
| description: Reads from Excel Range | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(getRangeValues)); | |
| /* istanbul ignore next */ | |
| const getRangeValues = async (): Promise<string[][]> => { |
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: Test Read function | |
| description: Reads from Excel Range | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(getRangeValues)); | |
| /* istanbul ignore next */ | |
| const getRangeValues = async (): Promise<string[][]> => { |
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: Basic API call (TypeScript) | |
| description: Performs a basic Excel API call using TypeScript. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(getRangeValues)); | |
| /* istanbul ignore next */ | |
| const getRangeValues = async (): Promise<string[][]> => { |
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: PowerPoint - Write and Read SVG (2) | |
| description: PowerPoint - Write and Read SVG | |
| host: POWERPOINT | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#insert").click(() => tryCatch(insertSvg)); | |
| $("#getData").click(() => tryCatch(getDataviaShapes)); | |
| var id = 0; |
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: Save Settings Test | |
| description: Save Settings Test | |
| host: POWERPOINT | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#add").click(run); | |
| $("#read").click(read); | |
| const key = "MyKey"; |
NewerOlder