com.crystaldecisions.sdk.occa.report.definition
Interface IParagraphTextElement

All Superinterfaces:
IClone, IParagraphElement
All Known Implementing Classes:
ParagraphTextElement

public interface IParagraphTextElement
extends IParagraphElement

This interface enables you to display static text in one of the TextObject object's paragraphs.


Method Summary
 int getCharacterSpacing()
           Returns the amount of space that is set between characters.
 java.lang.String getText()
           Returns the text of the element.
 void setCharacterSpacing(int characterSpacing)
           Sets the amount of space that is set between characters.
 void setText(java.lang.String text)
           Sets the text of the element.
 
Methods inherited from interface com.crystaldecisions.sdk.occa.report.definition.IParagraphElement
getFontColor, getKind, setFontColor, setKind
 

Method Detail

getCharacterSpacing

int getCharacterSpacing()

Returns the amount of space that is set between characters.

Specified by:
getCharacterSpacing in interface IParagraphElement
Returns:
An int that specifies the amount of space that is set between characters.

getText

java.lang.String getText()

Returns the text of the element.

Returns:
A String containing the text of the element.

setCharacterSpacing

void setCharacterSpacing(int characterSpacing)

Sets the amount of space that is set between characters.

Specified by:
setCharacterSpacing in interface IParagraphElement
Parameters:
characterSpacing - An int that specifies the amount of space that is set between characters.

setText

void setText(java.lang.String text)

Sets the text of the element.

Parameters:
text - A String containing the text of the element.