Interface CTCustomProperties
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTCustomProperties extends XmlObject
An XML CT_CustomProperties(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTCustomProperties.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 CTCustomProperty
addNewCustomPr()
Appends and returns a new empty value (as xml) as the last "customPr" elementCTCustomProperty[]
getCustomPrArray()
Deprecated.CTCustomProperty
getCustomPrArray(int i)
Gets ith "customPr" elementjava.util.List<CTCustomProperty>
getCustomPrList()
Gets a List of "customPr" elementsCTCustomProperty
insertNewCustomPr(int i)
Inserts and returns a new empty value (as xml) as the ith "customPr" elementvoid
removeCustomPr(int i)
Removes the ith "customPr" elementvoid
setCustomPrArray(int i, CTCustomProperty customPr)
Sets ith "customPr" elementvoid
setCustomPrArray(CTCustomProperty[] customPrArray)
Sets array of all "customPr" elementint
sizeOfCustomPrArray()
Returns number of "customPr" 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
-
getCustomPrList
java.util.List<CTCustomProperty> getCustomPrList()
Gets a List of "customPr" elements
-
getCustomPrArray
@Deprecated CTCustomProperty[] getCustomPrArray()
Deprecated.Gets array of all "customPr" elements
-
getCustomPrArray
CTCustomProperty getCustomPrArray(int i)
Gets ith "customPr" element
-
sizeOfCustomPrArray
int sizeOfCustomPrArray()
Returns number of "customPr" element
-
setCustomPrArray
void setCustomPrArray(CTCustomProperty[] customPrArray)
Sets array of all "customPr" element
-
setCustomPrArray
void setCustomPrArray(int i, CTCustomProperty customPr)
Sets ith "customPr" element
-
insertNewCustomPr
CTCustomProperty insertNewCustomPr(int i)
Inserts and returns a new empty value (as xml) as the ith "customPr" element
-
addNewCustomPr
CTCustomProperty addNewCustomPr()
Appends and returns a new empty value (as xml) as the last "customPr" element
-
removeCustomPr
void removeCustomPr(int i)
Removes the ith "customPr" element
-
-