PowerPoint

CountSlides

Counts the slides from a powerPoint document.

Syntax

CountSlides ( Document )

Parameters

Document The PowerPoint document. Type: Any

Return Type

Int

GetSlideThumbnail

Create a thumbnail image from a PowerPoint slide by index. A dictionary with the image as document (key: 'Thumbnail'), the slide notes (key: 'Notes'), slide title (key: 'Title') and slide index (key: 'Index') returned.

Syntax

GetSlideThumbnail ( Document , Index [, Width] )

Parameters

Document PowerPoint document Type: Document

Index Index of the slide in Presentation. Type: Int

Width (optional) The desired width (x dimension) in pixel. Type: Int

Return Type

Dictionary<Any,Any>

RemoveAllSlides

Remove all slides in PowerPoint document for the presented index list. The modified Ppt document is returned.

Syntax

RemoveAllSlides ( Document , IndexList )

Parameters

Document The PowerPoint Document. Type: Document

IndexList List of indexes that are removed (blacklist). Type: List<Int>

Return Type

Document

RemoveAllSlidesExceptFor

Remove all slides in PowerPoint document except for the presented index list. The modified Ppt document is returned.

Syntax

RemoveAllSlidesExceptFor ( Document , IndexList )

Parameters

Document The PowerPoint Document. Type: Document

IndexList List of indexes that are NOT removed (whitelist). Type: List<Int>

Return Type

Document

Last updated