View Travail avec des feuilles.EXCEL.yaml
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: 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)); |
View Apparence.EXCEL.yaml
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: 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)); |
View Tableaux.EXCEL.yaml
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: 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)); |
View Date et Heure.EXCEL.yaml
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: 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)); |
View Mise en forme conditionnelle.EXCEL.yaml
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: 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)); |
View Promise.EXCEL.yaml
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: 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) => { |
View squelette standard.EXCEL.yaml
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: 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 |
View Propriétés des cellules.EXCEL.yaml
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: 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) => { |
View plage 1.EXCEL.yaml
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: 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) { |
View plage 2.EXCEL.yaml
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: 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