Compartir a través de


PowerPoint.ShapeType enum

Especifica el tipo de una forma.

Comentarios

[ Conjunto de API: PowerPointApi 1.4 ]

Ejemplos

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/powerpoint/shapes/get-shapes-by-type.yaml

// Changes the dash style of every line in the slide.
await PowerPoint.run(async (context) => {
  // Get the type of shape for every shape in the collection.
  const shapes: PowerPoint.ShapeCollection = context.presentation.slides.getItemAt(0).shapes;
  shapes.load("type");
  await context.sync();

  // Change the dash style for shapes of the type `line`.
  shapes.items.forEach((shape) => {
    if (shape.type === PowerPoint.ShapeType.line) {
      shape.lineFormat.dashStyle = PowerPoint.ShapeLineDashStyle.dashDot;
    }
  });
  await context.sync();
});

Campos

callout = "Callout"

La forma es una llamada.

chart = "Chart"

La forma es un gráfico.

contentApp = "ContentApp"

La forma es un complemento de Office de contenido.

diagram = "Diagram"

La forma es un diagrama.

freeform = "Freeform"

La forma es un objeto de forma libre.

geometricShape = "GeometricShape"

La forma es una forma geométrica como rectángulo.

graphic = "Graphic"

La forma es un gráfico.

group = "Group"

La forma es una forma de grupo que contiene subformas.

image = "Image"

La forma es una imagen.

ink = "Ink"

La forma es un objeto de lápiz.

line = "Line"

La forma es una línea.

media = "Media"

La forma es un objeto multimedia.

model3D = "Model3D"

La forma es un modelo 3D.

ole = "Ole"

La forma es un objeto OLE (vinculación e inserción de objetos).

placeholder = "Placeholder"

La forma es un marcador de posición.

smartArt = "SmartArt"

La forma es un gráfico SmartArt.

table = "Table"

La forma es una tabla.

textBox = "TextBox"

La forma es un cuadro de texto.

unsupported = "Unsupported"

No se admite el tipo de forma determinada.