-
Notifications
You must be signed in to change notification settings - Fork 116
ppt shape
zmworm edited this page Apr 4, 2026
·
28 revisions
Shapes and text boxes on slides.
Path: /slide[N]/shape[M]
-
get - Returned attributes and output format
-
add - Add shapes with text, fill, position
-
set - Modify shape properties, animation
officecli get slides.pptx /slide[1]/shape[1]
officecli get slides.pptx /slide[1]/shape[1] --depth 2Selectors: shape, textbox, title
| Attribute | Description |
|---|---|
font/font!=
|
Font name |
title |
Is title shape |
Pseudo: :contains("text")
officecli query slides.pptx 'shape:contains("Revenue")'
officecli query slides.pptx "title"
officecli query slides.pptx "shape[font!=Calibri]"officecli remove slides.pptx /slide[1]/shape[2]officecli move slides.pptx /slide[1]/shape[3] --to /slide[2]officecli add slides.pptx /slide[2] --from /slide[1]/shape[1]Based on OfficeCLI v1.0.33