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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTDrawing.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 CTAnchor
addNewAnchor()
Appends and returns a new empty value (as xml) as the last "anchor" elementCTInline
addNewInline()
Appends and returns a new empty value (as xml) as the last "inline" elementCTAnchor[]
getAnchorArray()
Deprecated.CTAnchor
getAnchorArray(int i)
Gets ith "anchor" elementjava.util.List<CTAnchor>
getAnchorList()
Gets a List of "anchor" elementsCTInline[]
getInlineArray()
Deprecated.CTInline
getInlineArray(int i)
Gets ith "inline" elementjava.util.List<CTInline>
getInlineList()
Gets a List of "inline" elementsCTAnchor
insertNewAnchor(int i)
Inserts and returns a new empty value (as xml) as the ith "anchor" elementCTInline
insertNewInline(int i)
Inserts and returns a new empty value (as xml) as the ith "inline" elementvoid
removeAnchor(int i)
Removes the ith "anchor" elementvoid
removeInline(int i)
Removes the ith "inline" elementvoid
setAnchorArray(int i, CTAnchor anchor)
Sets ith "anchor" elementvoid
setAnchorArray(CTAnchor[] anchorArray)
Sets array of all "anchor" elementvoid
setInlineArray(int i, CTInline inline)
Sets ith "inline" elementvoid
setInlineArray(CTInline[] inlineArray)
Sets array of all "inline" elementint
sizeOfAnchorArray()
Returns number of "anchor" elementint
sizeOfInlineArray()
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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getAnchorList
java.util.List<CTAnchor> getAnchorList()
Gets a List of "anchor" elements
-
getAnchorArray
@Deprecated CTAnchor[] getAnchorArray()
Deprecated.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
@Deprecated CTInline[] getInlineArray()
Deprecated.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
-
-