com.aspose.slides
Class MasterSlidesEx

java.lang.Object
  extended by com.aspose.slides.MasterSlidesEx
Direct Known Subclasses:
MasterSlideExCollection

Deprecated.

@Deprecated
public class MasterSlidesEx
extends java.lang.Object

Represents a collection of master slides.


Method Summary
 int addClone(MasterSlideEx slide)
          Deprecated.  Adds a copy of a specified slide to the end of the collection.
 MasterSlideEx get_Item(int index)
          Deprecated.  Gets the element at the specified index.
 int getCount()
          Deprecated.  Gets the number of elements actually contained in the collection.
 void insertClone(int index, MasterSlideEx slide)
          Deprecated.  Inserts a copy of a specified slide to specified position of the collection.
 com.aspose.ms.System.Collections.IEnumerator<MasterSlideEx> iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 void remove(MasterSlideEx value)
          Deprecated.  Removes the first occurrence of a specific object from the collection.
 void removeAt(int index)
          Deprecated.  Removes the element at the specified index of the collection.
 void removeUnused(boolean ignorePreserveField)
          Deprecated.  Removes unused master slides.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCount

public int getCount()
Deprecated. 

Gets the number of elements actually contained in the collection. Read-only int.


get_Item

public MasterSlideEx get_Item(int index)
Deprecated. 

Gets the element at the specified index. Read-only MasterSlideEx.


remove

public void remove(MasterSlideEx value)
Deprecated. 

Removes the first occurrence of a specific object from the collection.

Parameters:
value - The master slide to remove from the collection.

removeAt

public void removeAt(int index)
Deprecated. 

Removes the element at the specified index of the collection.

Parameters:
index - The zero-based index of the element to remove.

removeUnused

public void removeUnused(boolean ignorePreserveField)
Deprecated. 

Removes unused master slides.

Parameters:
ignorePreserveField - Determines, whether this method should remove unused master even if its MasterSlideEx.Preserve property is set to true.

addClone

public int addClone(MasterSlideEx slide)
Deprecated. 

Adds a copy of a specified slide to the end of the collection. Linked layout slides will be copied too.

Parameters:
slide - Slide to clone.
Returns:
Index of new slide.

insertClone

public void insertClone(int index,
                        MasterSlideEx slide)
Deprecated. 

Inserts a copy of a specified slide to specified position of the collection. Linked layout slides will be copied too.

Parameters:
index - Index of new slide.
slide - Slide to clone.

iterator

public com.aspose.ms.System.Collections.IEnumerator<MasterSlideEx> iterator()
Deprecated. 

Returns an enumerator for the entire collection.

Returns:
An IEnumerator for the entire collection.