Excel.PictureFormat enum

Das Format des Bilds.

Hinweise

[ API-Satz: ExcelApi 1.9 ]

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"