The ISlideInfo Interface provides information about the particular slide of the presentation such as title, duration, text, etc. It exposes the following properties and methods:
Property | Type | Description |
---|---|---|
loaded | Boolean | Indicating whether the slide has been loaded completely. |
duration | Number | Slide duration in seconds. |
startTime | Number | Slide start time within presentation timeline. |
endTime | Number | Slide end time within presentation timeline. |
level | Number | Slide level (0 - upper level). |
hidden | Boolean | Indicates whether the slide is hidden. |
index | Number | Slide index within presentation. |
visibleIndex | Number | Slide index within visible slides. |
visibleStartTime | Number | Slide start time within visible slides timeline. |
visibleEndTime | Number | Slide end time within visible slides timeline. |
title | String | Slide title |
animationSteps | IAnimationSteps | Returns the IAnimationSteps interface providing the information about slide animation steps |
notesText | String | Slide notes text |
startStepIndex | Number | Slide start step index within the presentation |
endStepIndex | Number | Slide end step index within the presentation |
slideText | String | Slide text in the normalized form (see the remarks section) |
notesTextNormalized | String | Slide notes text in the normalized form (see the remarks section) |
titleNormalized | String | Slide title in the normalized form (see the remarks section) |
visibleStartStepIndex | Number | Slide start step index within visible slides |
visibleEndStepIndex | Number | Slide end step index within visible slides |
presenterIndex | Number | Index of presenter associated with the slide Note: This method returns an undefined value if no presenter is associated with the slide. |
resources | ISlidesResources | Returns the ISlidesResources interface providing the information about resources included into the slide. |
Normalized strings are strings having all characters in the lower case with no extra spaces between words. This simplifies and speeds up full text search implementation.