googleSlides.deleteObject delete a slide or page element.
Example
Inputs
Providepresentation and objectId. A second argument with account selects a Google Account.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a slide or page element.
googleSlides.deleteObject delete a slide or page element.
import { automation, onDashboardRun } from "automate.ax"
import { googleSlides } from "automate.ax/google-slides"
export default automation("Delete object", () => {
onDashboardRun({ title: "Delete object" })
googleSlides.deleteObject({
presentation: "presentation-id",
objectId: "shape-1",
})
})
presentation and objectId. A second argument with account selects a Google Account.