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 classCTCustomProperties.FactoryA factory class with static methods for creating instances of this type. 
- 
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype- 
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 CTCustomPropertyaddNewCustomPr()Appends and returns a new empty value (as xml) as the last "customPr" elementCTCustomProperty[]getCustomPrArray()Deprecated.CTCustomPropertygetCustomPrArray(int i)Gets ith "customPr" elementjava.util.List<CTCustomProperty>getCustomPrList()Gets a List of "customPr" elementsCTCustomPropertyinsertNewCustomPr(int i)Inserts and returns a new empty value (as xml) as the ith "customPr" elementvoidremoveCustomPr(int i)Removes the ith "customPr" elementvoidsetCustomPrArray(int i, CTCustomProperty customPr)Sets ith "customPr" elementvoidsetCustomPrArray(CTCustomProperty[] customPrArray)Sets array of all "customPr" elementintsizeOfCustomPrArray()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 
 - 
 
 -