PowerPoint.ShapeType enum
図形の種類を指定します。
注釈
[ API セット: PowerPointApi 1.4 ]
例
// 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();
});
フィールド
callout = "Callout" | 図形は吹き出しです。 |
chart = "Chart" | 図形はグラフです。 |
contentApp = "ContentApp" | 図形は、Office アドインのコンテンツです。 |
diagram = "Diagram" | 図形は図です。 |
freeform = "Freeform" | 図形はフリーフォーム オブジェクトです。 |
geometricShape = "GeometricShape" | 図形は、四角形などの幾何学的図形です。 |
graphic = "Graphic" | 図形はグラフィックです。 |
group = "Group" | 図形は、サブ図形を含むグループ図形です。 |
image = "Image" | 図形はイメージです。 |
ink = "Ink" | 図形はインク オブジェクトです。 |
line = "Line" | 図形は線です。 |
media = "Media" | 図形はメディア オブジェクトです。 |
model3D = "Model3D" | 図形は 3D モデルです。 |
ole = "Ole" | 図形は OLE (オブジェクト リンクと埋め込み) オブジェクトです。 |
placeholder = "Placeholder" | 図形はプレースホルダーです。 |
smartArt = "SmartArt" | 図形は SmartArt グラフィックです。 |
table = "Table" | 図形はテーブルです。 |
textBox = "TextBox" | 図形はテキスト ボックスです。 |
unsupported = "Unsupported" | 指定された図形の型はサポートされていません。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins