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: Travail avec des feuilles | |
| description: Travail avec des feuilles de calcul | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#ajouter").click(() => tryCatch(ajouter)); | |
| $("#copie").click(() => tryCatch(creation)); | |
| $("#supprimer").click(() => tryCatch(supprimer)); | |
| $("#changervisi").click(() => tryCatch(changerVisibilite)); |
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: Apparence | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#ligne1").click(() => tryCatch(ligne1)); | |
| $("#colonnea").click(() => tryCatch(colonneA)); | |
| $("#colonnesbd").click(() => tryCatch(colonnesBD)); | |
| $("#plagec2d4").click(() => tryCatch(plageC2D4)); |
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: Tableaux | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#creation").click(() => tryCatch(creation)); | |
| $("#ajout").click(() => tryCatch(ajoutDonnees)); | |
| $("#somme").click(() => tryCatch(somme)); | |
| $("#ajoutjson").click(() => tryCatch(ajoutJSON)); |
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: Date et Heure | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#date").click(() => tryCatch(dateA1)); | |
| $("#heure").click(() => tryCatch(heureB1)); | |
| $("#horloge").click(() => tryCatch(horloge)); | |
| $("#datemoment").click(() => tryCatch(dateAvecMoment)); |
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: Mise en forme conditionnelle | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#rouge").click(() => tryCatch(negatifEnRouge)); | |
| $("#effacer").click(() => tryCatch(effacerLesRegles)); | |
| $("#echelle").click(() => tryCatch(echelle)); | |
| $("#databar").click(() => tryCatch(dataBar)); |
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: Promise | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(affichage); | |
| async function attendre(ms) { | |
| let promise = new Promise((resolve) => { |
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: squelette standard | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $('#run').click(() => tryCatch(run)); | |
| async function run() { | |
| await Excel.run(async (context) => { | |
| // Entrez votre code ici |
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: Propriétés des cellules | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(run)); | |
| async function run() { | |
| await Excel.run(async (context) => { |
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: plage 1 | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(run)); | |
| async function run() { | |
| await Excel.run(async function (context) { |
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: plage 2 | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(run)); | |
| async function run() { | |
| await Excel.run(async function (context) { |
OlderNewer