A | |
add, TablePacker | |
E | |
each, TablePacker | |
G | |
getMargin, Cell | |
L | |
layout, TablePacker | |
left, Cell | |
M | |
margin, Cell | |
R | |
right, Cell | |
row, TablePacker | |
S | |
setBounds, TablePacker | |
T | |
TablePacker, TablePacker |
Adds a new item.
TablePacker.prototype.add = function ( item )
Calls the passed method for each item in the table.
TablePacker.prototype.each = function ( f )
Get the margin on some side.
Cell.prototype.getMargin = function ( side )
Set the positions of all the objects in the table.
TablePacker.prototype.layout = function ()
Set this cell alignment to left.
Cell.prototype.left = function ()
Sets all the margins to m, or if you specify a side, set only that side.
Cell.prototype.margin = function ( m, side )
Set this cell alignment to right.
Cell.prototype.right = function ()
Move to a new line.
TablePacker.prototype.row = function ()
Resize the table.
TablePacker.prototype.setBounds = function ( x, y, w, h )
Create a new TablePacker.
function TablePacker( x, y, w, h )