com.aspose.slides
Class NamedSlideShowCollection

java.lang.Object
  extended by com.aspose.slides.NamedSlideShowCollection

public final class NamedSlideShowCollection
extends java.lang.Object

Represents a key-value collection of NamedSlideShow objects.


Method Summary
 NamedSlideShow add(java.lang.String name)
           Creates new slide show element and adds it to the end of collection.
 void copyTo(com.aspose.ms.System.Collections.DictionaryEntry<java.lang.String,NamedSlideShow>[] array, int index)
           Copies all elements from the collection into the specified array.
 int getCount()
           Returns a number of elements in the collection.
 java.lang.Object getSyncRoot()
           Returns a synchronization root.
 boolean isSynchronized()
           Returns a value indicating whether access to the collection is synchronized (thread-safe).
 java.util.Iterator<?> iterator()
           Returns an enumerator for the entire collection.
 void remove(java.lang.String name)
           Removes slideshow from collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

add

public NamedSlideShow add(java.lang.String name)

Creates new slide show element and adds it to the end of collection.

Parameters:
name - Name for new slide show.
Returns:
Created slide show.

remove

public void remove(java.lang.String name)

Removes slideshow from collection.

Parameters:
name - Name of slideshow to remove.

copyTo

public void copyTo(com.aspose.ms.System.Collections.DictionaryEntry<java.lang.String,NamedSlideShow>[] array,
                   int index)

Copies all elements from the collection into the specified array.

Parameters:
array - Array to fill.
index - Starting position in target array.

getCount

public int getCount()

Returns a number of elements in the collection. Readonly int.


isSynchronized

public boolean isSynchronized()

Returns a value indicating whether access to the collection is synchronized (thread-safe).


getSyncRoot

public java.lang.Object getSyncRoot()

Returns a synchronization root. Readonly object.


iterator

public java.util.Iterator<?> iterator()

Returns an enumerator for the entire collection.