Interface CTCustomSheetViews
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTCustomSheetViews extends XmlObject
An XML CT_CustomSheetViews(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTCustomSheetViews.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 CTCustomSheetView
addNewCustomSheetView()
Appends and returns a new empty value (as xml) as the last "customSheetView" elementCTCustomSheetView[]
getCustomSheetViewArray()
Deprecated.CTCustomSheetView
getCustomSheetViewArray(int i)
Gets ith "customSheetView" elementjava.util.List<CTCustomSheetView>
getCustomSheetViewList()
Gets a List of "customSheetView" elementsCTCustomSheetView
insertNewCustomSheetView(int i)
Inserts and returns a new empty value (as xml) as the ith "customSheetView" elementvoid
removeCustomSheetView(int i)
Removes the ith "customSheetView" elementvoid
setCustomSheetViewArray(int i, CTCustomSheetView customSheetView)
Sets ith "customSheetView" elementvoid
setCustomSheetViewArray(CTCustomSheetView[] customSheetViewArray)
Sets array of all "customSheetView" elementint
sizeOfCustomSheetViewArray()
Returns number of "customSheetView" 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
-
getCustomSheetViewList
java.util.List<CTCustomSheetView> getCustomSheetViewList()
Gets a List of "customSheetView" elements
-
getCustomSheetViewArray
@Deprecated CTCustomSheetView[] getCustomSheetViewArray()
Deprecated.Gets array of all "customSheetView" elements
-
getCustomSheetViewArray
CTCustomSheetView getCustomSheetViewArray(int i)
Gets ith "customSheetView" element
-
sizeOfCustomSheetViewArray
int sizeOfCustomSheetViewArray()
Returns number of "customSheetView" element
-
setCustomSheetViewArray
void setCustomSheetViewArray(CTCustomSheetView[] customSheetViewArray)
Sets array of all "customSheetView" element
-
setCustomSheetViewArray
void setCustomSheetViewArray(int i, CTCustomSheetView customSheetView)
Sets ith "customSheetView" element
-
insertNewCustomSheetView
CTCustomSheetView insertNewCustomSheetView(int i)
Inserts and returns a new empty value (as xml) as the ith "customSheetView" element
-
addNewCustomSheetView
CTCustomSheetView addNewCustomSheetView()
Appends and returns a new empty value (as xml) as the last "customSheetView" element
-
removeCustomSheetView
void removeCustomSheetView(int i)
Removes the ith "customSheetView" element
-
-