Interface CTDrawing
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTDrawing extends XmlObject
An XML CT_Drawing(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTDrawing>Factorystatic SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CTAnchoraddNewAnchor()Appends and returns a new empty value (as xml) as the last "anchor" elementCTInlineaddNewInline()Appends and returns a new empty value (as xml) as the last "inline" elementCTAnchor[]getAnchorArray()Gets array of all "anchor" elementsCTAnchorgetAnchorArray(int i)Gets ith "anchor" elementjava.util.List<CTAnchor>getAnchorList()Gets a List of "anchor" elementsCTInline[]getInlineArray()Gets array of all "inline" elementsCTInlinegetInlineArray(int i)Gets ith "inline" elementjava.util.List<CTInline>getInlineList()Gets a List of "inline" elementsCTAnchorinsertNewAnchor(int i)Inserts and returns a new empty value (as xml) as the ith "anchor" elementCTInlineinsertNewInline(int i)Inserts and returns a new empty value (as xml) as the ith "inline" elementvoidremoveAnchor(int i)Removes the ith "anchor" elementvoidremoveInline(int i)Removes the ith "inline" elementvoidsetAnchorArray(int i, CTAnchor anchor)Sets ith "anchor" elementvoidsetAnchorArray(CTAnchor[] anchorArray)Sets array of all "anchor" elementvoidsetInlineArray(int i, CTInline inline)Sets ith "inline" elementvoidsetInlineArray(CTInline[] inlineArray)Sets array of all "inline" elementintsizeOfAnchorArray()Returns number of "anchor" elementintsizeOfInlineArray()Returns number of "inline" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTDrawing> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getAnchorList
java.util.List<CTAnchor> getAnchorList()
Gets a List of "anchor" elements
-
getAnchorArray
CTAnchor[] getAnchorArray()
Gets array of all "anchor" elements
-
getAnchorArray
CTAnchor getAnchorArray(int i)
Gets ith "anchor" element
-
sizeOfAnchorArray
int sizeOfAnchorArray()
Returns number of "anchor" element
-
setAnchorArray
void setAnchorArray(CTAnchor[] anchorArray)
Sets array of all "anchor" element
-
setAnchorArray
void setAnchorArray(int i, CTAnchor anchor)Sets ith "anchor" element
-
insertNewAnchor
CTAnchor insertNewAnchor(int i)
Inserts and returns a new empty value (as xml) as the ith "anchor" element
-
addNewAnchor
CTAnchor addNewAnchor()
Appends and returns a new empty value (as xml) as the last "anchor" element
-
removeAnchor
void removeAnchor(int i)
Removes the ith "anchor" element
-
getInlineList
java.util.List<CTInline> getInlineList()
Gets a List of "inline" elements
-
getInlineArray
CTInline[] getInlineArray()
Gets array of all "inline" elements
-
getInlineArray
CTInline getInlineArray(int i)
Gets ith "inline" element
-
sizeOfInlineArray
int sizeOfInlineArray()
Returns number of "inline" element
-
setInlineArray
void setInlineArray(CTInline[] inlineArray)
Sets array of all "inline" element
-
setInlineArray
void setInlineArray(int i, CTInline inline)Sets ith "inline" element
-
insertNewInline
CTInline insertNewInline(int i)
Inserts and returns a new empty value (as xml) as the ith "inline" element
-
addNewInline
CTInline addNewInline()
Appends and returns a new empty value (as xml) as the last "inline" element
-
removeInline
void removeInline(int i)
Removes the ith "inline" element
-
-