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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTControls.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 CTControl
addNewControl()
Appends and returns a new empty value (as xml) as the last "control" elementCTControl[]
getControlArray()
Deprecated.CTControl
getControlArray(int i)
Gets ith "control" elementjava.util.List<CTControl>
getControlList()
Gets a List of "control" elementsCTControl
insertNewControl(int i)
Inserts and returns a new empty value (as xml) as the ith "control" elementvoid
removeControl(int i)
Removes the ith "control" elementvoid
setControlArray(int i, CTControl control)
Sets ith "control" elementvoid
setControlArray(CTControl[] controlArray)
Sets array of all "control" elementint
sizeOfControlArray()
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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getControlList
java.util.List<CTControl> getControlList()
Gets a List of "control" elements
-
getControlArray
@Deprecated CTControl[] getControlArray()
Deprecated.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
-
-