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 classCTTable.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 CTTableGridaddNewTblGrid()Appends and returns a new empty "tblGrid" elementCTTablePropertiesaddNewTblPr()Appends and returns a new empty "tblPr" elementCTTableRowaddNewTr()Appends and returns a new empty value (as xml) as the last "tr" elementCTTableGridgetTblGrid()Gets the "tblGrid" elementCTTablePropertiesgetTblPr()Gets the "tblPr" elementCTTableRow[]getTrArray()Deprecated.CTTableRowgetTrArray(int i)Gets ith "tr" elementjava.util.List<CTTableRow>getTrList()Gets a List of "tr" elementsCTTableRowinsertNewTr(int i)Inserts and returns a new empty value (as xml) as the ith "tr" elementbooleanisSetTblPr()True if has "tblPr" elementvoidremoveTr(int i)Removes the ith "tr" elementvoidsetTblGrid(CTTableGrid tblGrid)Sets the "tblGrid" elementvoidsetTblPr(CTTableProperties tblPr)Sets the "tblPr" elementvoidsetTrArray(int i, CTTableRow tr)Sets ith "tr" elementvoidsetTrArray(CTTableRow[] trArray)Sets array of all "tr" elementintsizeOfTrArray()Returns number of "tr" elementvoidunsetTblPr()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
-
-