Interface CTEmbeddedFontList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTEmbeddedFontList extends XmlObject
An XML CT_EmbeddedFontList(@http://schemas.openxmlformats.org/presentationml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTEmbeddedFontList.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 CTEmbeddedFontListEntryaddNewEmbeddedFont()Appends and returns a new empty value (as xml) as the last "embeddedFont" elementCTEmbeddedFontListEntry[]getEmbeddedFontArray()Deprecated.CTEmbeddedFontListEntrygetEmbeddedFontArray(int i)Gets ith "embeddedFont" elementjava.util.List<CTEmbeddedFontListEntry>getEmbeddedFontList()Gets a List of "embeddedFont" elementsCTEmbeddedFontListEntryinsertNewEmbeddedFont(int i)Inserts and returns a new empty value (as xml) as the ith "embeddedFont" elementvoidremoveEmbeddedFont(int i)Removes the ith "embeddedFont" elementvoidsetEmbeddedFontArray(int i, CTEmbeddedFontListEntry embeddedFont)Sets ith "embeddedFont" elementvoidsetEmbeddedFontArray(CTEmbeddedFontListEntry[] embeddedFontArray)Sets array of all "embeddedFont" elementintsizeOfEmbeddedFontArray()Returns number of "embeddedFont" 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
-
getEmbeddedFontList
java.util.List<CTEmbeddedFontListEntry> getEmbeddedFontList()
Gets a List of "embeddedFont" elements
-
getEmbeddedFontArray
@Deprecated CTEmbeddedFontListEntry[] getEmbeddedFontArray()
Deprecated.Gets array of all "embeddedFont" elements
-
getEmbeddedFontArray
CTEmbeddedFontListEntry getEmbeddedFontArray(int i)
Gets ith "embeddedFont" element
-
sizeOfEmbeddedFontArray
int sizeOfEmbeddedFontArray()
Returns number of "embeddedFont" element
-
setEmbeddedFontArray
void setEmbeddedFontArray(CTEmbeddedFontListEntry[] embeddedFontArray)
Sets array of all "embeddedFont" element
-
setEmbeddedFontArray
void setEmbeddedFontArray(int i, CTEmbeddedFontListEntry embeddedFont)Sets ith "embeddedFont" element
-
insertNewEmbeddedFont
CTEmbeddedFontListEntry insertNewEmbeddedFont(int i)
Inserts and returns a new empty value (as xml) as the ith "embeddedFont" element
-
addNewEmbeddedFont
CTEmbeddedFontListEntry addNewEmbeddedFont()
Appends and returns a new empty value (as xml) as the last "embeddedFont" element
-
removeEmbeddedFont
void removeEmbeddedFont(int i)
Removes the ith "embeddedFont" element
-
-