Packagekm.display
Classpublic class SimpleTableCell
InheritanceSimpleTableCell Inheritance flash.display.Sprite

The SimpleTableCell class is used by the SimpleTable class and not intended for separate use.



Public Properties
 PropertyDefined by
  background : BitmapData
Cell background image.
SimpleTableCell
  bgColor : uint
Cell background color [ARGB].
SimpleTableCell
  content : *
Gets or sets the cell content.
SimpleTableCell
  vars : Object
Object to store variables.
SimpleTableCell
Public Methods
 MethodDefined by
  
SimpleTableCell(col:int, row:int)
SimpleTableCell
  
span(cols:int, rows:int):void
Span the cell over multiple columns and / or rows.
A value smaller than 1 is treated as 1.
SimpleTableCell
Property detail
backgroundproperty
public var background:BitmapData

Cell background image.

bgColorproperty 
public var bgColor:uint

Cell background color [ARGB].

contentproperty 
content:*  [read-write]

Gets or sets the cell content.

Implementation
    public function get content():*
    public function set content(value:*):void
varsproperty 
public var vars:Object

Object to store variables.

Constructor detail
SimpleTableCell()constructor
public function SimpleTableCell(col:int, row:int)

Parameters
col:int
 
row:int
Method detail
span()method
public function span(cols:int, rows:int):void

Span the cell over multiple columns and / or rows.
A value smaller than 1 is treated as 1.

Parameters
cols:int
 
rows:int