| Package | flare.display |
| Class | public class LineSprite |
| Inheritance | LineSprite DirtySprite flash.display.Sprite |
| Subclasses | AxisGridLine |
| Property | Defined by | ||
|---|---|---|---|
![]() | angle : Number The angle value of this sprite's position in polar co-ordinates.
| DirtySprite | |
![]() | height : Number
If dirty, this sprite is re-rendered before returning the height.
| DirtySprite | |
| lineColor : uint The color of the line.
| LineSprite | ||
| lineWidth : Number The width of the line.
| LineSprite | ||
![]() | origin : Point The origin point for polar coordinates.
| DirtySprite | |
![]() | radius : Number The radius value of this sprite's position in polar co-ordinates.
| DirtySprite | |
![]() | width : Number
If dirty, this sprite is re-rendered before returning the width.
| DirtySprite | |
![]() | x : Number | DirtySprite | |
| x1 : Number The x-coordinate for the first line endpoint.
| LineSprite | ||
| x2 : Number The x-coordinate for the second line endpoint.
| LineSprite | ||
![]() | y : Number | DirtySprite | |
| y1 : Number The y-coordinate for the first line endpoint.
| LineSprite | ||
| y2 : Number The y-coordinate for the second line endpoint.
| LineSprite | ||
| Method | Defined by | ||
|---|---|---|---|
![]() |
dirty():void
Marks this sprite as "dirty" and in need of re-rendering.
| DirtySprite | |
![]() |
getBounds(targetCoordinateSpace:DisplayObject):Rectangle
If dirty, this sprite is re-rendered returning the bounds.
| DirtySprite | |
![]() |
getRect(targetCoordinateSpace:DisplayObject):Rectangle
If dirty, this sprite is re-rendered before returning the rect.
| DirtySprite | |
![]() |
hitTestObject(obj:DisplayObject):Boolean
If dirty, either sprite is re-rendered before hit-testing.
| DirtySprite | |
![]() |
hitTestPoint(x:Number, y:Number, shapeFlag:Boolean = false):Boolean
If dirty, this sprite is re-rendered before hit-testing.
| DirtySprite | |
|
render():void
| LineSprite | ||
![]() |
renderDirty(evt:Event = null):void
[static]
Frame render callback that renders all sprites on the dirty list.
| DirtySprite | |
![]() |
toString():String
| DirtySprite | |
| lineColor | property |
lineColor:uint [read-write]The color of the line.
Implementation public function get lineColor():uint
public function set lineColor(value:uint):void
| lineWidth | property |
lineWidth:Number [read-write] The width of the line. A value of zero indicates a hairwidth line,
as determined by Graphics.lineStyle
public function get lineWidth():Number
public function set lineWidth(value:Number):void
| x1 | property |
x1:Number [read-write]The x-coordinate for the first line endpoint.
Implementation public function get x1():Number
public function set x1(value:Number):void
| x2 | property |
x2:Number [read-write]The x-coordinate for the second line endpoint.
Implementation public function get x2():Number
public function set x2(value:Number):void
| y1 | property |
y1:Number [read-write]The y-coordinate for the first line endpoint.
Implementation public function get y1():Number
public function set y1(value:Number):void
| y2 | property |
y2:Number [read-write]The y-coordinate for the second line endpoint.
Implementation public function get y2():Number
public function set y2(value:Number):void
| render | () | method |
public override function render():void