Interface CTTableRow
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTTableRow extends XmlObject
An XML CT_TableRow(@http://schemas.openxmlformats.org/drawingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTTableRow.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 CTOfficeArtExtensionListaddNewExtLst()Appends and returns a new empty "extLst" elementCTTableCelladdNewTc()Appends and returns a new empty value (as xml) as the last "tc" elementCTOfficeArtExtensionListgetExtLst()Gets the "extLst" elementlonggetH()Gets the "h" attributeCTTableCell[]getTcArray()Deprecated.CTTableCellgetTcArray(int i)Gets ith "tc" elementjava.util.List<CTTableCell>getTcList()Gets a List of "tc" elementsCTTableCellinsertNewTc(int i)Inserts and returns a new empty value (as xml) as the ith "tc" elementbooleanisSetExtLst()True if has "extLst" elementvoidremoveTc(int i)Removes the ith "tc" elementvoidsetExtLst(CTOfficeArtExtensionList extLst)Sets the "extLst" elementvoidsetH(long h)Sets the "h" attributevoidsetTcArray(int i, CTTableCell tc)Sets ith "tc" elementvoidsetTcArray(CTTableCell[] tcArray)Sets array of all "tc" elementintsizeOfTcArray()Returns number of "tc" elementvoidunsetExtLst()Unsets the "extLst" elementSTCoordinatexgetH()Gets (as xml) the "h" attributevoidxsetH(STCoordinate h)Sets (as xml) the "h" attribute-
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
-
getTcList
java.util.List<CTTableCell> getTcList()
Gets a List of "tc" elements
-
getTcArray
@Deprecated CTTableCell[] getTcArray()
Deprecated.Gets array of all "tc" elements
-
getTcArray
CTTableCell getTcArray(int i)
Gets ith "tc" element
-
sizeOfTcArray
int sizeOfTcArray()
Returns number of "tc" element
-
setTcArray
void setTcArray(CTTableCell[] tcArray)
Sets array of all "tc" element
-
setTcArray
void setTcArray(int i, CTTableCell tc)Sets ith "tc" element
-
insertNewTc
CTTableCell insertNewTc(int i)
Inserts and returns a new empty value (as xml) as the ith "tc" element
-
addNewTc
CTTableCell addNewTc()
Appends and returns a new empty value (as xml) as the last "tc" element
-
removeTc
void removeTc(int i)
Removes the ith "tc" 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
-
getH
long getH()
Gets the "h" attribute
-
xgetH
STCoordinate xgetH()
Gets (as xml) the "h" attribute
-
setH
void setH(long h)
Sets the "h" attribute
-
xsetH
void xsetH(STCoordinate h)
Sets (as xml) the "h" attribute
-
-