rows is a list of lists containing tuples, which
represent the columns/cells in each rows.
EX
rows = [[(row 1:column1
,1)],[(row2:column1
,1)]]
There are no implemented interfaces.
indent
(type:
int
)
0
getAttribute(name)
getAttributeNode(name)
getAttributes()
getChildNodes(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
Returns a NodeList that contains all children of this node. If there are no children, this is a empty NodeList
getChildren()
getColorizableTexts()
return a tuple where each item is a column/cell's contents. The tuple, result, will be of this format. ("r1 col1", "r1=col2", "r2 col1", "r2 col2")
getColumns()
getElementsByTagName(tagname)
Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree. Parameter: tagname The name of the tag to match (* = all tags). Return Value: A new NodeList object containing all the matched Elements.
getFirstChild(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
The first child of this node. If there is no such node this returns None
getLastChild(type=<type 'type'>, sts=(<type 'str'>, <type 'unicode'>))
The last child of this node. If there is no such node this returns None.
getNextSibling()
The node immediately preceding this node. If there is no such node, this returns None.
getNodeName()
The name of this node, depending on its type
getNodeType()
A code representing the type of the node.
getNodeValue()
getOwnerDocument()
The Document object associated with this node, if any.
getParentNode()
The parent of this node. All nodes except Document DocumentFragment and Attr may have a parent
getPreviousSibling()
The node immediately preceding this node. If there is no such node, this returns None.
getRows()
getSubparagraphs()
getTagName()
The name of the element
hasChildNodes()
Returns true if the node has any children, false if it doesn't.
setColorizableTexts(texts)
texts is going to a tuple where each item is the result of being mapped to the colortext function. Need to insert the results appropriately into the individual columns/cells
setColumns(columns)
setSubparagraphs(subs)
There are no known subclasses.