com.aspose.slides
Class ParagraphsEx

java.lang.Object
  extended by com.aspose.slides.ParagraphsEx
Direct Known Subclasses:
ParagraphExCollection

Deprecated.

@Deprecated
public class ParagraphsEx
extends java.lang.Object

Represents a collection of a paragraphs.


Method Summary
 int add(ParagraphEx value)
          Deprecated.  Adds a Paragraph to the end of collection.
 int add(ParagraphExCollection value)
          Deprecated.  Adds a content of ParagraphsEx to the end of collection.
 void clear()
          Deprecated.  Removes all elements from the collection.
 ParagraphEx 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.
 PresentationEx getPresentation()
          Deprecated.  Returns the parent presentation of a paragraphs collection.
 BaseSlideEx getSlide()
          Deprecated.  Returns the parent slide of a paragraphs collection.
 void insert(int index, ParagraphEx value)
          Deprecated.  Inserts a Paragraph into the collection at the specified index.
 void insert(int index, ParagraphExCollection value)
          Deprecated.  Inserts a content of ParagraphExCollection into the collection at the specified index.
 com.aspose.ms.System.Collections.IEnumerator<ParagraphEx> iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 void notify(java.lang.Object sender)
          Deprecated.  
 void removeAt(int index)
          Deprecated.  Removes the element at the specified index of the collection.
 
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.


get_Item

public ParagraphEx get_Item(int index)
Deprecated. 

Gets the element at the specified index.


add

public int add(ParagraphEx value)
Deprecated. 

Adds a Paragraph to the end of collection.

Parameters:
value - The Paragraph to be added to the end of the collection.
Returns:
The index at which the Paragraph has been added.

add

public int add(ParagraphExCollection value)
Deprecated. 

Adds a content of ParagraphsEx to the end of collection.

Parameters:
value - The ParagraphExCollection to be added to the end of the collection.
Returns:
The index at which the Paragraph has been added or -1 if there are nothing to add.

insert

public void insert(int index,
                   ParagraphEx value)
Deprecated. 

Inserts a Paragraph into the collection at the specified index.

Parameters:
index - The zero-based index at which Paragraph should be inserted.
value - The Paragraph to insert.

insert

public void insert(int index,
                   ParagraphExCollection value)
Deprecated. 

Inserts a content of ParagraphExCollection into the collection at the specified index.

Parameters:
index - The zero-based index at which paragraphs should be inserted.
value - The paragraphs to insert.

clear

public void clear()
Deprecated. 

Removes all elements 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.

iterator

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

Returns an enumerator for the entire collection.

Returns:
An IEnumerator for the entire collection.

getSlide

public BaseSlideEx getSlide()
Deprecated. 

Returns the parent slide of a paragraphs collection. Read-only BaseSlideEx.


getPresentation

public PresentationEx getPresentation()
Deprecated. 

Returns the parent presentation of a paragraphs collection. Read-only PresentationEx.


notify

public void notify(java.lang.Object sender)
Deprecated.