Compartir a través de


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

getFormat()

Devuelve el formato de la imagen.

getId()

Especifica el identificador de forma del objeto de imagen.

getShape()

Devuelve el Shape objeto asociado a la imagen.

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()

Devuelve el Shape objeto asociado a la imagen.

getShape(): Shape;

Devoluciones