Package org.w3c.dom.mathml
Interface MathMLTableCellElement
- All Superinterfaces:
Element,MathMLContainer,MathMLElement,MathMLPresentationContainer,MathMLPresentationElement,Node
- All Known Implementing Classes:
Mtd
This interface extends the MathMLPresentationContainer interface for the
MathML table or matrix cell element mtd.
-
Field Summary
Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE -
Method Summary
Modifier and TypeMethodDescriptionA string representing the integer index (1-based?) of the cell in its containing row.A string specifying an override of the inherited horizontal alignment of this cell within the table column.A string representing a positive integer that specifies the number of columns spanned by this cell.A string specifying how the alignment groups within the cell are to be aligned with those in cells above or below this cell.booleanA string with the values true or false indicating whether the cell contains align groups.A string specifying an override of the inherited vertical alignment of this cell within the table row.A string representing a positive integer that specifies the number of rows spanned by this cell.voidsetColumnalign(String columnalign) setter for the columnalign attribute.voidsetColumnspan(String columnspan) setter for the columnspan attribute.voidsetGroupalign(String groupalign) setter for the groupalign attribute.voidsetRowalign(String rowalign) setter for the rowalign attribute.voidsetRowspan(String rowspan) setter for the rowspan attribute.Methods inherited from interface org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNSMethods inherited from interface org.w3c.dom.mathml.MathMLContainer
deleteArgument, deleteDeclaration, getArgument, getArguments, getDeclaration, getDeclarations, getNArguments, insertArgument, insertDeclaration, removeArgument, removeDeclaration, setArgument, setDeclarationMethods inherited from interface org.w3c.dom.mathml.MathMLElement
getClassName, getHref, getId, getMathElementStyle, getOwnerMathElement, getXref, setClassName, setHref, setId, setMathElementStyle, setXrefMethods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
-
Method Details
-
getRowspan
String getRowspan()A string representing a positive integer that specifies the number of rows spanned by this cell. The default is 1.- Returns:
- value of the rowspan attribute.
-
setRowspan
setter for the rowspan attribute.- Parameters:
rowspan- new value for rowspan.- See Also:
-
getColumnspan
String getColumnspan()A string representing a positive integer that specifies the number of columns spanned by this cell. The default is 1.- Returns:
- value of the columnspan attribute.
-
setColumnspan
setter for the columnspan attribute.- Parameters:
columnspan- new value for columnspan.- See Also:
-
getRowalign
String getRowalign()A string specifying an override of the inherited vertical alignment of this cell within the table row. Allowed values are top, bottom, center, baseline, and axis.- Returns:
- value of the rowalign attribute.
-
setRowalign
setter for the rowalign attribute.- Parameters:
rowalign- new value for rowalign.- See Also:
-
getColumnalign
String getColumnalign()A string specifying an override of the inherited horizontal alignment of this cell within the table column. Allowed values are left, center, and right.- Returns:
- value of the columnalign attribute.
-
setColumnalign
setter for the columnalign attribute.- Parameters:
columnalign- new value for columnalign.- See Also:
-
getGroupalign
String getGroupalign()A string specifying how the alignment groups within the cell are to be aligned with those in cells above or below this cell. The string consists of a space-separated sequence of specifiers, each of which can have the following values: left, right, center, or decimalpoint.- Returns:
- value of the groupalign attribute.
-
setGroupalign
setter for the groupalign attribute.- Parameters:
groupalign- new value for groupalign.- See Also:
-
getHasaligngroups
boolean getHasaligngroups()A string with the values true or false indicating whether the cell contains align groups.- Returns:
- value of the hasaligngroups attribute.
-
getCellindex
String getCellindex()A string representing the integer index (1-based?) of the cell in its containing row. [What about spanning cells? How do these affect this value?]- Returns:
- value of the cellindex attribute.
-