| Package | efnx.gui |
| Class | public class TileArea |
| Inheritance | TileArea flash.display.Bitmap |
| Property | Defined by | ||
|---|---|---|---|
| bitmapData : BitmapData
The BitmapData object to be tiled.
| TileArea | ||
| height : Number [write-only]
Sets the height of the TileArea.
| TileArea | ||
| initialized : Boolean [read-only]
Determines whether or not the TileArea is initialized (has bitmapData)
| TileArea | ||
| repeat : String
Sets the mode of tiling.
| TileArea | ||
| width : Number [write-only]
Sets the width of the TileArea.
| TileArea | ||
| Method | Defined by | ||
|---|---|---|---|
|
TileArea()
| TileArea | ||
|
Clones the TileArea.
| TileArea | ||
|
inheritSkin(parent:TileArea):void
Inherits the skin [or bitmapdata] of the
parent TileArea. | TileArea | ||
| bitmapData | property |
bitmapData:BitmapData [read-write]The BitmapData object to be tiled.
Implementation public function get bitmapData():BitmapData
public function set bitmapData(value:BitmapData):void
| height | property |
height:Number [write-only]Sets the height of the TileArea. The height should be a positive integer, if not, it will be converted to one.
Implementation public function set height(value:Number):void
| initialized | property |
initialized:Boolean [read-only]Determines whether or not the TileArea is initialized (has bitmapData)
Implementation public function get initialized():Boolean
| repeat | property |
repeat:String [read-write]Sets the mode of tiling. A value of "default" tiles in x and y, "x" tiles in x and "y" tiles in y.
The default value is "default".
public function get repeat():String
public function set repeat(value:String):void
| width | property |
width:Number [write-only]Sets the width of the TileArea. The width should be a positive integer, if not, it will be converted to one.
Implementation public function set width(value:Number):void
| TileArea | () | constructor |
public function TileArea()
| clone | () | method |
| inheritSkin | () | method |
public function inheritSkin(parent:TileArea):void
Inherits the skin [or bitmapdata] of the parent TileArea.
This is much like
the clone function, but instead of creating a new TileArea
instance and returning it, it populates the calling TileArea instance
with the bitmapdata of the TileArea passed in the parameters.
parent:TileArea — The parent TileArea to inherit from.
|