Package | com.globfx.showroom |
Class | public class Presentation |
Inheritance | Presentation ![]() |
The Presentation class represents the PowerPoint presentation that is currently displayed by the slide show.
It can be retrieved through the ShowRoom.presentation
property.
See also
Property | Defined By | ||
---|---|---|---|
name : String [read-only]
Returns the name of the presentation.
The name a presentation could be "Presentation1" if it has not been saved yet,
or or "MyPres.pptx" if it has been saved.
| Presentation | ||
numSlides : int [read-only]
Returns the total number of slides of the presentation.
This number does not necessarily equals the number of slides
of the slide show.
| Presentation |
Method | Defined By | ||
---|---|---|---|
findSlideByTitle(title:String):Slide
Returns the slide with the specified title in the presentation.
If several slides have this title, the first one is returned.
| Presentation | ||
Returns the specified slide of the presentation.
Slide numbers go from 1 to numSlides inclusive.
| Presentation |
name | property |
name:String
[read-only]
Returns the name of the presentation.
The name a presentation could be "Presentation1" if it has not been saved yet, or or "MyPres.pptx" if it has been saved.
public function get name():String
numSlides | property |
numSlides:int
[read-only]
Returns the total number of slides of the presentation.
This number does not necessarily equals the number of slides of the slide show.
public function get numSlides():int
See also
findSlideByTitle | () | method |
public function findSlideByTitle(title:String):Slide
Returns the slide with the specified title in the presentation.
If several slides have this title, the first one is returned.
Parameters
title:String — The title of the slide object.
|
Slide — The slide object that has the specified title.
|
getSlide | () | method |
public function getSlide(number:int):Slide
Returns the specified slide of the presentation.
Slide numbers go from 1 to numSlides
inclusive.
Parameters
number:int — The number of the slide object.
|
Slide — The slide object for the specified slide number.
|
See also