Interface CTCustomColorList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTCustomColorList extends XmlObject
An XML CT_CustomColorList(@http://schemas.openxmlformats.org/drawingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTCustomColorList.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 CTCustomColoraddNewCustClr()Appends and returns a new empty value (as xml) as the last "custClr" elementCTCustomColor[]getCustClrArray()Deprecated.CTCustomColorgetCustClrArray(int i)Gets ith "custClr" elementList<CTCustomColor>getCustClrList()Gets a List of "custClr" elementsCTCustomColorinsertNewCustClr(int i)Inserts and returns a new empty value (as xml) as the ith "custClr" elementvoidremoveCustClr(int i)Removes the ith "custClr" elementvoidsetCustClrArray(int i, CTCustomColor custClr)Sets ith "custClr" elementvoidsetCustClrArray(CTCustomColor[] custClrArray)Sets array of all "custClr" elementintsizeOfCustClrArray()Returns number of "custClr" 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
-
getCustClrList
List<CTCustomColor> getCustClrList()
Gets a List of "custClr" elements
-
getCustClrArray
@Deprecated CTCustomColor[] getCustClrArray()
Deprecated.Gets array of all "custClr" elements
-
getCustClrArray
CTCustomColor getCustClrArray(int i)
Gets ith "custClr" element
-
sizeOfCustClrArray
int sizeOfCustClrArray()
Returns number of "custClr" element
-
setCustClrArray
void setCustClrArray(CTCustomColor[] custClrArray)
Sets array of all "custClr" element
-
setCustClrArray
void setCustClrArray(int i, CTCustomColor custClr)Sets ith "custClr" element
-
insertNewCustClr
CTCustomColor insertNewCustClr(int i)
Inserts and returns a new empty value (as xml) as the ith "custClr" element
-
addNewCustClr
CTCustomColor addNewCustClr()
Appends and returns a new empty value (as xml) as the last "custClr" element
-
removeCustClr
void removeCustClr(int i)
Removes the ith "custClr" element
-
-