Interface CTTable
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTTable extends XmlObject
An XML CT_Table(@http://schemas.openxmlformats.org/drawingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTTable.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 CTTableGrid
addNewTblGrid()
Appends and returns a new empty "tblGrid" elementCTTableProperties
addNewTblPr()
Appends and returns a new empty "tblPr" elementCTTableRow
addNewTr()
Appends and returns a new empty value (as xml) as the last "tr" elementCTTableGrid
getTblGrid()
Gets the "tblGrid" elementCTTableProperties
getTblPr()
Gets the "tblPr" elementCTTableRow[]
getTrArray()
Deprecated.CTTableRow
getTrArray(int i)
Gets ith "tr" elementjava.util.List<CTTableRow>
getTrList()
Gets a List of "tr" elementsCTTableRow
insertNewTr(int i)
Inserts and returns a new empty value (as xml) as the ith "tr" elementboolean
isSetTblPr()
True if has "tblPr" elementvoid
removeTr(int i)
Removes the ith "tr" elementvoid
setTblGrid(CTTableGrid tblGrid)
Sets the "tblGrid" elementvoid
setTblPr(CTTableProperties tblPr)
Sets the "tblPr" elementvoid
setTrArray(int i, CTTableRow tr)
Sets ith "tr" elementvoid
setTrArray(CTTableRow[] trArray)
Sets array of all "tr" elementint
sizeOfTrArray()
Returns number of "tr" elementvoid
unsetTblPr()
Unsets the "tblPr" 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
-
getTblPr
CTTableProperties getTblPr()
Gets the "tblPr" element
-
isSetTblPr
boolean isSetTblPr()
True if has "tblPr" element
-
setTblPr
void setTblPr(CTTableProperties tblPr)
Sets the "tblPr" element
-
addNewTblPr
CTTableProperties addNewTblPr()
Appends and returns a new empty "tblPr" element
-
unsetTblPr
void unsetTblPr()
Unsets the "tblPr" element
-
getTblGrid
CTTableGrid getTblGrid()
Gets the "tblGrid" element
-
setTblGrid
void setTblGrid(CTTableGrid tblGrid)
Sets the "tblGrid" element
-
addNewTblGrid
CTTableGrid addNewTblGrid()
Appends and returns a new empty "tblGrid" element
-
getTrList
java.util.List<CTTableRow> getTrList()
Gets a List of "tr" elements
-
getTrArray
@Deprecated CTTableRow[] getTrArray()
Deprecated.Gets array of all "tr" elements
-
getTrArray
CTTableRow getTrArray(int i)
Gets ith "tr" element
-
sizeOfTrArray
int sizeOfTrArray()
Returns number of "tr" element
-
setTrArray
void setTrArray(CTTableRow[] trArray)
Sets array of all "tr" element
-
setTrArray
void setTrArray(int i, CTTableRow tr)
Sets ith "tr" element
-
insertNewTr
CTTableRow insertNewTr(int i)
Inserts and returns a new empty value (as xml) as the ith "tr" element
-
addNewTr
CTTableRow addNewTr()
Appends and returns a new empty value (as xml) as the last "tr" element
-
removeTr
void removeTr(int i)
Removes the ith "tr" element
-
-