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 class
CTTableRow.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 CTOfficeArtExtensionList
addNewExtLst()
Appends and returns a new empty "extLst" elementCTTableCell
addNewTc()
Appends and returns a new empty value (as xml) as the last "tc" elementCTOfficeArtExtensionList
getExtLst()
Gets the "extLst" elementlong
getH()
Gets the "h" attributeCTTableCell[]
getTcArray()
Deprecated.CTTableCell
getTcArray(int i)
Gets ith "tc" elementjava.util.List<CTTableCell>
getTcList()
Gets a List of "tc" elementsCTTableCell
insertNewTc(int i)
Inserts and returns a new empty value (as xml) as the ith "tc" elementboolean
isSetExtLst()
True if has "extLst" elementvoid
removeTc(int i)
Removes the ith "tc" elementvoid
setExtLst(CTOfficeArtExtensionList extLst)
Sets the "extLst" elementvoid
setH(long h)
Sets the "h" attributevoid
setTcArray(int i, CTTableCell tc)
Sets ith "tc" elementvoid
setTcArray(CTTableCell[] tcArray)
Sets array of all "tc" elementint
sizeOfTcArray()
Returns number of "tc" elementvoid
unsetExtLst()
Unsets the "extLst" elementSTCoordinate
xgetH()
Gets (as xml) the "h" attributevoid
xsetH(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
-
-