com.aspose.slides
Interface IParagraphCollection

All Superinterfaces:
com.aspose.ms.System.Collections.IEnumerable<IParagraph>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IParagraph>, IPresentationComponent, ISlideComponent, java.lang.Iterable<IParagraph>
All Known Implementing Classes:
ParagraphCollection

public interface IParagraphCollection
extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IParagraph>, ISlideComponent

Represents a collection of a paragraphs.


Method Summary
 void add(IParagraph value)
           
 int add(IParagraphCollection value)
           
 void addFromHtml(java.lang.String text)
           
 void addFromHtml(java.lang.String text, IHtmlExternalResolver resolver, java.lang.String uri)
           
 void clear()
           
 java.lang.String exportToHtml(int firstParagraphIndex, int paragraphsCount, ITextToHtmlConversionOptions options)
           
 IParagraph get_Item(int index)
           
 int getCount()
           
 void insert(int index, IParagraph value)
           
 void insert(int index, IParagraphCollection value)
           
 boolean remove(IParagraph item)
           
 void removeAt(int index)
           
 
Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable
iterator
 
Methods inherited from interface com.aspose.slides.ISlideComponent
getSlide
 
Methods inherited from interface com.aspose.slides.IPresentationComponent
getPresentation
 

Method Detail

get_Item

IParagraph get_Item(int index)

getCount

int getCount()

add

void add(IParagraph value)

add

int add(IParagraphCollection value)

insert

void insert(int index,
            IParagraph value)

insert

void insert(int index,
            IParagraphCollection value)

clear

void clear()

removeAt

void removeAt(int index)

remove

boolean remove(IParagraph item)

addFromHtml

void addFromHtml(java.lang.String text)

addFromHtml

void addFromHtml(java.lang.String text,
                 IHtmlExternalResolver resolver,
                 java.lang.String uri)

exportToHtml

java.lang.String exportToHtml(int firstParagraphIndex,
                              int paragraphsCount,
                              ITextToHtmlConversionOptions options)