PowerPoint.ShapeType enum
Spécifie le type d’une forme.
Remarques
[ Ensemble d’API : PowerPointApi 1.4 ]
Exemples
// 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();
});
Champs
callout = "Callout" | La forme est une légende. |
chart = "Chart" | La forme est un graphique. |
contentApp = "ContentApp" | La forme est un complément Office de contenu. |
diagram = "Diagram" | La forme est un diagramme. |
freeform = "Freeform" | La forme est un objet de forme libre. |
geometricShape = "GeometricShape" | La forme est une forme géométrique telle que rectangle. |
graphic = "Graphic" | La forme est un graphique. |
group = "Group" | La forme est une forme de groupe qui contient des sous-formes. |
image = "Image" | La forme est une image. |
ink = "Ink" | La forme est un objet d’entrée manuscrite. |
line = "Line" | La forme est une ligne. |
media = "Media" | La forme est un objet multimédia. |
model3D = "Model3D" | La forme est un modèle 3D. |
ole = "Ole" | La forme est un objet OLE (Object Linking and Embedding). |
placeholder = "Placeholder" | La forme est un espace réservé. |
smartArt = "SmartArt" | La forme est un graphique SmartArt. |
table = "Table" | La forme est un tableau. |
textBox = "TextBox" | La forme est une zone de texte. |
unsupported = "Unsupported" | Le type de la forme donnée n’est pas pris en charge. |