iSpring.Slides Interface
The Slides Interface represents a collection of presentation slides.
| Properties |
|
Property |
Value Type |
Access |
Default value |
Property description |
|
Count |
int |
Read only |
|
Returns a number of slides in the presentation |
| Methods |
|
Method |
Method description |
|
Slide Item(int index) |
Returns the Slide Interface
representing a particular slide in the collection |
|
void SaveThumbnails( |
Saves slide thumbnails to the specified folder. |
Samples
The following C# sample illustrates Slides interface usage.
import iSpring;
...
PresentationConverter pc = new PresentationConverter();
pc.OpenPresentation("C:\\presentation.ppt");
Slides slides = pc.Presentation.Slides;
Slide firstSlide = slides[1];
Slide lastSlide = slides.Item(slides.Count);
slides.SaveThumbnails("C:\\thumbnails", "thumb", ImageFileType.IFT_JPG, 120, 90, 75);
See Also
ImageFileType Enumeration
Presentation Interface
Slide Interface
iSpring SDK COM API