HTMLTableCreator
-- Name : String
-- DivContent : HTMLElement
-- Rows : Array : HTMLTableCreatorRow
-- GetRowPosition : Function (Row) As Number
-- MoveRow : Sub (OldPos, NewPos, Before)
-- DeleteRow : Sub (Pos)
-- CloneRow : Function (Pos) As HTMLTableCreatorRow
-- AddRow : Sub (Row)
-- Generate : Sub ()
HTMLTableCreatorRow
-- Name : String
-- ParentTable : HTMLTableCreator
-- GetPosition : Function () As Number
-- Move : Sub (NewPos, Before)
-- Delete : Sub ()
-- Clone : Function () As HTMLTableCreatorRow
-- Cols : Array : HTMLTableCreatorCol
-- GetColPosition : Function (Number)
-- MoveCol : Sub (OldPos, NewPos, Before)
-- AddCol : Sub (Col)
-- DeleteCol : Sub (Col)
-- Generate : Sub (ParentNode)
HTMLTableCreatorCol
-- Name : String
-- ParentRow : HTMLTableCreatorRow
-- ParentTable : HTMLTableCreator
-- ...
-- GetColSpan : ...
-- GetInnerHTMl : ...
-- SetColSpan : ...
-- SetInnerHTML : ...
-- Generate : Sub (ParentNode)
Partager