Interface IText
-
public interface IText
Represents Text object in a Chart in the scripting environment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.birt.report.model.api.extension.IColor
getColor()
Gets the Color of Textorg.eclipse.birt.report.model.api.extension.IFont
getFont()
Gets the Font of Textjava.lang.String
getValue()
Gets the string value of Textvoid
setColor(org.eclipse.birt.report.model.api.extension.IColor color)
Sets the Color of Textvoid
setFont(org.eclipse.birt.report.model.api.extension.IFont font)
Sets the Font of Textvoid
setValue(java.lang.String value)
Sets the string value of Text
-
-
-
Method Detail
-
getValue
java.lang.String getValue()
Gets the string value of Text- Returns:
- string value
-
setValue
void setValue(java.lang.String value)
Sets the string value of Text- Parameters:
value
- string value
-
getFont
org.eclipse.birt.report.model.api.extension.IFont getFont()
Gets the Font of Text- Returns:
- Font
-
setFont
void setFont(org.eclipse.birt.report.model.api.extension.IFont font)
Sets the Font of Text- Parameters:
font
- Font
-
getColor
org.eclipse.birt.report.model.api.extension.IColor getColor()
Gets the Color of Text- Returns:
- Color of Text
-
setColor
void setColor(org.eclipse.birt.report.model.api.extension.IColor color)
Sets the Color of Text- Parameters:
color
- Color of Text
-
-