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 class
CTTextBody.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
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 CTTextBodyProperties
addNewBodyPr()
Appends and returns a new empty "bodyPr" elementCTTextListStyle
addNewLstStyle()
Appends and returns a new empty "lstStyle" elementCTTextParagraph
addNewP()
Appends and returns a new empty value (as xml) as the last "p" elementCTTextBodyProperties
getBodyPr()
Gets the "bodyPr" elementCTTextListStyle
getLstStyle()
Gets the "lstStyle" elementCTTextParagraph[]
getPArray()
Deprecated.CTTextParagraph
getPArray(int i)
Gets ith "p" elementjava.util.List<CTTextParagraph>
getPList()
Gets a List of "p" elementsCTTextParagraph
insertNewP(int i)
Inserts and returns a new empty value (as xml) as the ith "p" elementboolean
isSetLstStyle()
True if has "lstStyle" elementvoid
removeP(int i)
Removes the ith "p" elementvoid
setBodyPr(CTTextBodyProperties bodyPr)
Sets the "bodyPr" elementvoid
setLstStyle(CTTextListStyle lstStyle)
Sets the "lstStyle" elementvoid
setPArray(int i, CTTextParagraph p)
Sets ith "p" elementvoid
setPArray(CTTextParagraph[] pArray)
Sets array of all "p" elementint
sizeOfPArray()
Returns number of "p" elementvoid
unsetLstStyle()
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
-
-