ExcelScript.Image interface
ワークシート内のイメージを表します。 対応する Shape
オブジェクトを取得するには、 Image.getShape
を使用します。
注釈
例
/**
* This script transfers an image from one worksheet to another.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the worksheet with the image on it.
const firstWorksheet = workbook.getWorksheet("FirstSheet");
// Get the first image from the worksheet.
// If a script added the image, you could add a name to make it easier to find.
let image: ExcelScript.Image;
firstWorksheet.getShapes().forEach((shape, index) => {
if (shape.getType() === ExcelScript.ShapeType.image) {
image = shape.getImage();
return;
}
});
// Copy the image to another worksheet.
image.getShape().copyTo("SecondSheet");
}
メソッド
get |
画像の形式を返します。 |
get |
イメージ オブジェクトの図形識別子を指定します。 |
get |
イメージに関連付けられている |
メソッドの詳細
getFormat()
getId()
イメージ オブジェクトの図形識別子を指定します。
getId(): string;
戻り値
string
getShape()
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Scripts