IParagraph

Overview

IParagraph is a interface in Aspose.Slides FOSS for Java.

Represents a text paragraph.

This interface provides 6 methods for working with IParagraph objects in Java programs. Available methods include: asIPresentationComponent, asISlideComponent, getParagraphFormat, getPortions, getText, setText. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: paragraphFormat, portions, text.

Properties

NameTypeAccessDescription
portionsIPortionCollectionReadReturns the collection of text portions in this paragraph.
paragraphFormatIParagraphFormatReadReturns the paragraph formatting properties.
textStringReadGets the text of this paragraph.

Methods

SignatureDescription
getPortions()IPortionCollectionReturns the collection of text portions in this paragraph.
getParagraphFormat()IParagraphFormatReturns the paragraph formatting properties.
getText()StringGets the text of this paragraph.
setText(value: String)Sets the text of this paragraph.
asISlideComponent()ISlideComponentReturns the parent slide component.
asIPresentationComponent()IPresentationComponentReturns the parent presentation component.

See Also