Interface CTControls
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTControls extends XmlObject
An XML CT_Controls(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTControls>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 CTControladdNewControl()Appends and returns a new empty value (as xml) as the last "control" elementCTControl[]getControlArray()Gets array of all "control" elementsCTControlgetControlArray(int i)Gets ith "control" elementjava.util.List<CTControl>getControlList()Gets a List of "control" elementsCTControlinsertNewControl(int i)Inserts and returns a new empty value (as xml) as the ith "control" elementvoidremoveControl(int i)Removes the ith "control" elementvoidsetControlArray(int i, CTControl control)Sets ith "control" elementvoidsetControlArray(CTControl[] controlArray)Sets array of all "control" elementintsizeOfControlArray()Returns number of "control" 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<CTControls> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getControlList
java.util.List<CTControl> getControlList()
Gets a List of "control" elements
-
getControlArray
CTControl[] getControlArray()
Gets array of all "control" elements
-
getControlArray
CTControl getControlArray(int i)
Gets ith "control" element
-
sizeOfControlArray
int sizeOfControlArray()
Returns number of "control" element
-
setControlArray
void setControlArray(CTControl[] controlArray)
Sets array of all "control" element
-
setControlArray
void setControlArray(int i, CTControl control)Sets ith "control" element
-
insertNewControl
CTControl insertNewControl(int i)
Inserts and returns a new empty value (as xml) as the ith "control" element
-
addNewControl
CTControl addNewControl()
Appends and returns a new empty value (as xml) as the last "control" element
-
removeControl
void removeControl(int i)
Removes the ith "control" element
-
-