Interface MathMLTableCellElement

All Superinterfaces:
Element, MathMLContainer, MathMLElement, MathMLPresentationContainer, MathMLPresentationElement, Node
All Known Implementing Classes:
Mtd

public interface MathMLTableCellElement extends MathMLPresentationContainer
This interface extends the MathMLPresentationContainer interface for the MathML table or matrix cell element mtd.
  • 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

      void setRowspan(String rowspan)
      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

      void setColumnspan(String columnspan)
      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

      void setRowalign(String rowalign)
      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

      void setColumnalign(String columnalign)
      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

      void setGroupalign(String groupalign)
      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.