Interface IChartTitle
- All Known Subinterfaces:
IAxisTitle
public interface IChartTitle
Represents the chart title.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()Deletes the object.Gets the text direction.getFont()Returns theIFontFormatobject that represents the font of thespecified object.Returns theIChartFormatobject.Gets a value that represents the formula of the object using A1-style notation, in English.Gets a value that represents the formula of the object using R1C1-style notation, in English.booleanGets whether the layout includes the title.intGets the text orientation.Returns the parent object for the specified object.getText()Returns the text for the specified object.Returns theITextFrameobject that represents the text of thespecified object.voidsetDirection(TextDirection value) Sets the text direction.voidsetFormula(String value) Sets a value that represents the formula of the object using A1-style notation, in English.voidsetFormulaR1C1(String value) Sets a value that represents the formula of the object using R1C1-style notation, in English.voidsetIncludeInLayout(boolean value) Sets whether the layout includes the title.voidsetOrientation(int value) Sets the text orientation.voidSets the text for the specified object.
-
Method Details
-
getParent
IChart getParent()Returns the parent object for the specified object. -
getText
String getText()Returns the text for the specified object. -
setText
Sets the text for the specified object. -
getTextFrame
ITextFrame getTextFrame()Returns theITextFrameobject that represents the text of thespecified object. -
getFont
IFontFormat getFont()Returns theIFontFormatobject that represents the font of thespecified object. -
getFormat
IChartFormat getFormat()Returns theIChartFormatobject. -
getFormula
String getFormula()Gets a value that represents the formula of the object using A1-style notation, in English. -
setFormula
Sets a value that represents the formula of the object using A1-style notation, in English. -
getFormulaR1C1
String getFormulaR1C1()Gets a value that represents the formula of the object using R1C1-style notation, in English. -
setFormulaR1C1
Sets a value that represents the formula of the object using R1C1-style notation, in English. -
getIncludeInLayout
boolean getIncludeInLayout()Gets whether the layout includes the title. True if a chart title will occupy the chart layout space when a chart layout is being determined. The default value is True. -
setIncludeInLayout
void setIncludeInLayout(boolean value) Sets whether the layout includes the title. True if a chart title will occupy the chart layout space when a chart layout is being determined. The default value is True. -
getOrientation
int getOrientation()Gets the text orientation. -
setOrientation
void setOrientation(int value) Sets the text orientation. Can be an integer value from –90 to 90 degrees. -
getDirection
TextDirection getDirection()Gets the text direction. -
setDirection
Sets the text direction. -
delete
void delete()Deletes the object.
-