goog.editor.plugins.TableEditor.CellSelection_ |
range
: goog.dom.AbstractRange
Selected range from which to calculate
selected cells.
|
getParentTableFunction
: ?function(Element):Element
A function that
finds the user-editable table from a given element.
|
Returns a boolean value indicating whether or not there is exactly
one cell in this selection. Note that this may not be the same as checking
whether getCells().length == 1; if there is a single cell with
rowSpan/colSpan set it will appear multiple times.
Returns: boolean
Whether there is exatly one cell in this selection.
|
code » | |
Returns the cells in this selection.
|
code » | |
Returns the column index of the farthest left cell in this selection.
Returns: number
The column index.
|
code » | |
Returns the row index of the uppermost cell in this selection.
Returns: number
The row index.
|
code » | |
Returns the column index of the farthest right cell in this selection.
Returns: number
The column index.
|
code » | |
Returns the row index of the lowermost cell in this selection.
Returns: number
The row index.
|
code » | |
Returns the EditableTable object of which this selection's cells are a
subset.
Returns: !goog.editor.Table
the table.
|
code » | |
Returns a boolean value indicating whether or not the cells in this
selection form a rectangle.
Returns: boolean
Whether the selection forms a rectangle.
|
code » |