Excel.PictureFormat enum
Das Format des Bilds.
Hinweise
Beispiele
// 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);
});
Felder
bmp = "BMP" | Bitmapbild. |
gif = "GIF" | Grafikaustauschformat. |
jpeg = "JPEG" | Gemeinsame Fotografische Expertengruppe. |
png = "PNG" | Portable Netzwerkgrafiken. |
svg = "SVG" | Skalierbare Vektorgrafik. |
unknown = "UNKNOWN" |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins