Interface CTFontCollection
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTFontCollection extends XmlObject
An XML CT_FontCollection(@http://schemas.openxmlformats.org/drawingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTFontCollection.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 CTTextFont
addNewCs()
Appends and returns a new empty "cs" elementCTTextFont
addNewEa()
Appends and returns a new empty "ea" elementCTOfficeArtExtensionList
addNewExtLst()
Appends and returns a new empty "extLst" elementCTSupplementalFont
addNewFont()
Appends and returns a new empty value (as xml) as the last "font" elementCTTextFont
addNewLatin()
Appends and returns a new empty "latin" elementCTTextFont
getCs()
Gets the "cs" elementCTTextFont
getEa()
Gets the "ea" elementCTOfficeArtExtensionList
getExtLst()
Gets the "extLst" elementCTSupplementalFont[]
getFontArray()
Deprecated.CTSupplementalFont
getFontArray(int i)
Gets ith "font" elementjava.util.List<CTSupplementalFont>
getFontList()
Gets a List of "font" elementsCTTextFont
getLatin()
Gets the "latin" elementCTSupplementalFont
insertNewFont(int i)
Inserts and returns a new empty value (as xml) as the ith "font" elementboolean
isSetExtLst()
True if has "extLst" elementvoid
removeFont(int i)
Removes the ith "font" elementvoid
setCs(CTTextFont cs)
Sets the "cs" elementvoid
setEa(CTTextFont ea)
Sets the "ea" elementvoid
setExtLst(CTOfficeArtExtensionList extLst)
Sets the "extLst" elementvoid
setFontArray(int i, CTSupplementalFont font)
Sets ith "font" elementvoid
setFontArray(CTSupplementalFont[] fontArray)
Sets array of all "font" elementvoid
setLatin(CTTextFont latin)
Sets the "latin" elementint
sizeOfFontArray()
Returns number of "font" elementvoid
unsetExtLst()
Unsets the "extLst" 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
-
getLatin
CTTextFont getLatin()
Gets the "latin" element
-
setLatin
void setLatin(CTTextFont latin)
Sets the "latin" element
-
addNewLatin
CTTextFont addNewLatin()
Appends and returns a new empty "latin" element
-
getEa
CTTextFont getEa()
Gets the "ea" element
-
setEa
void setEa(CTTextFont ea)
Sets the "ea" element
-
addNewEa
CTTextFont addNewEa()
Appends and returns a new empty "ea" element
-
getCs
CTTextFont getCs()
Gets the "cs" element
-
setCs
void setCs(CTTextFont cs)
Sets the "cs" element
-
addNewCs
CTTextFont addNewCs()
Appends and returns a new empty "cs" element
-
getFontList
java.util.List<CTSupplementalFont> getFontList()
Gets a List of "font" elements
-
getFontArray
@Deprecated CTSupplementalFont[] getFontArray()
Deprecated.Gets array of all "font" elements
-
getFontArray
CTSupplementalFont getFontArray(int i)
Gets ith "font" element
-
sizeOfFontArray
int sizeOfFontArray()
Returns number of "font" element
-
setFontArray
void setFontArray(CTSupplementalFont[] fontArray)
Sets array of all "font" element
-
setFontArray
void setFontArray(int i, CTSupplementalFont font)
Sets ith "font" element
-
insertNewFont
CTSupplementalFont insertNewFont(int i)
Inserts and returns a new empty value (as xml) as the ith "font" element
-
addNewFont
CTSupplementalFont addNewFont()
Appends and returns a new empty value (as xml) as the last "font" element
-
removeFont
void removeFont(int i)
Removes the ith "font" element
-
getExtLst
CTOfficeArtExtensionList getExtLst()
Gets the "extLst" element
-
isSetExtLst
boolean isSetExtLst()
True if has "extLst" element
-
setExtLst
void setExtLst(CTOfficeArtExtensionList extLst)
Sets the "extLst" element
-
addNewExtLst
CTOfficeArtExtensionList addNewExtLst()
Appends and returns a new empty "extLst" element
-
unsetExtLst
void unsetExtLst()
Unsets the "extLst" element
-
-