Excel.PictureFormat enum
Format de l’image.
Remarques
[ Ensemble d’API : ExcelApi 1.9 ]
Exemples
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/44-shape/shape-images.yaml
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("Shapes");
const shape = sheet.shapes.getItem("Image");
const result = shape.getAsImage(Excel.PictureFormat.png);
await context.sync();
const imageString = result.value;
// Your add-in would save this string as a .png file.
console.log("The image's Base64-encoded string: " + imageString);
});
Champs
bmp = "BMP" | Image bitmap. |
gif = "GIF" | Format d’échange de graphiques. |
jpeg = "JPEG" | Groupe conjoint d’experts photographiques. |
png = "PNG" | Portable Network Graphics. |
svg = "SVG" | Graphique vectoriel évolutif. |
unknown = "UNKNOWN" |
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.