Excel.PictureFormat enum

イメージの形式。

注釈

[ API セット: ExcelApi 1.9 ]

// 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);
});

フィールド

bmp = "BMP"

ビットマップ イメージ。

gif = "GIF"

グラフィックス交換形式。

jpeg = "JPEG"

共同写真専門家グループ。

png = "PNG"

ポータブル ネットワーク グラフィックス。

svg = "SVG"

スケーラブルなベクター グラフィック。

unknown = "UNKNOWN"