Excel.PictureFormat enum
イメージの形式。
注釈
例
// 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" |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins