Interface CTTextBody
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTTextBody extends XmlObject
An XML CT_TextBody(@http://schemas.openxmlformats.org/drawingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTTextBody.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CTTextBodyPropertiesaddNewBodyPr()Appends and returns a new empty "bodyPr" elementCTTextListStyleaddNewLstStyle()Appends and returns a new empty "lstStyle" elementCTTextParagraphaddNewP()Appends and returns a new empty value (as xml) as the last "p" elementCTTextBodyPropertiesgetBodyPr()Gets the "bodyPr" elementCTTextListStylegetLstStyle()Gets the "lstStyle" elementCTTextParagraph[]getPArray()Deprecated.CTTextParagraphgetPArray(int i)Gets ith "p" elementjava.util.List<CTTextParagraph>getPList()Gets a List of "p" elementsCTTextParagraphinsertNewP(int i)Inserts and returns a new empty value (as xml) as the ith "p" elementbooleanisSetLstStyle()True if has "lstStyle" elementvoidremoveP(int i)Removes the ith "p" elementvoidsetBodyPr(CTTextBodyProperties bodyPr)Sets the "bodyPr" elementvoidsetLstStyle(CTTextListStyle lstStyle)Sets the "lstStyle" elementvoidsetPArray(int i, CTTextParagraph p)Sets ith "p" elementvoidsetPArray(CTTextParagraph[] pArray)Sets array of all "p" elementintsizeOfPArray()Returns number of "p" elementvoidunsetLstStyle()Unsets the "lstStyle" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getBodyPr
CTTextBodyProperties getBodyPr()
Gets the "bodyPr" element
-
setBodyPr
void setBodyPr(CTTextBodyProperties bodyPr)
Sets the "bodyPr" element
-
addNewBodyPr
CTTextBodyProperties addNewBodyPr()
Appends and returns a new empty "bodyPr" element
-
getLstStyle
CTTextListStyle getLstStyle()
Gets the "lstStyle" element
-
isSetLstStyle
boolean isSetLstStyle()
True if has "lstStyle" element
-
setLstStyle
void setLstStyle(CTTextListStyle lstStyle)
Sets the "lstStyle" element
-
addNewLstStyle
CTTextListStyle addNewLstStyle()
Appends and returns a new empty "lstStyle" element
-
unsetLstStyle
void unsetLstStyle()
Unsets the "lstStyle" element
-
getPList
java.util.List<CTTextParagraph> getPList()
Gets a List of "p" elements
-
getPArray
@Deprecated CTTextParagraph[] getPArray()
Deprecated.Gets array of all "p" elements
-
getPArray
CTTextParagraph getPArray(int i)
Gets ith "p" element
-
sizeOfPArray
int sizeOfPArray()
Returns number of "p" element
-
setPArray
void setPArray(CTTextParagraph[] pArray)
Sets array of all "p" element
-
setPArray
void setPArray(int i, CTTextParagraph p)Sets ith "p" element
-
insertNewP
CTTextParagraph insertNewP(int i)
Inserts and returns a new empty value (as xml) as the ith "p" element
-
addNewP
CTTextParagraph addNewP()
Appends and returns a new empty value (as xml) as the last "p" element
-
removeP
void removeP(int i)
Removes the ith "p" element
-
-