ExcelScript.Image interface
Representa una imagen en la hoja de cálculo. Para obtener el objeto correspondiente Shape
, use Image.getShape
.
Comentarios
Ejemplos
/**
* 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");
}
Métodos
get |
Devuelve el formato de la imagen. |
get |
Especifica el identificador de forma del objeto de imagen. |
get |
Devuelve el |
Detalles del método
getFormat()
Devuelve el formato de la imagen.
getFormat(): PictureFormat;
Devoluciones
getId()
Especifica el identificador de forma del objeto de imagen.
getId(): string;
Devoluciones
string
getShape()
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.