| Package | com.degrafa.paint |
| Class | public class EmptyFill |
| Inheritance | EmptyFill DegrafaObject |
| Implements | IGraphicsFill |
| Property | Defined by | ||
|---|---|---|---|
![]() | document : Object
The MXML document that created this object.
| DegrafaObject | |
![]() | enableEvents : Boolean
Enable events for this object.
| DegrafaObject | |
![]() | hasEventManager : Boolean
Tests to see if a EventDispatcher instance has been created for this object.
| DegrafaObject | |
![]() | id : String
The identifier used by document to refer to this object.
| DegrafaObject | |
![]() | isInitialized : Boolean | DegrafaObject | |
| lastArgs : Array [read-only]
Provide access to the lastArgs array
| EmptyFill | ||
| lastRectangle : Rectangle [read-only]
Provides access to the last rectangle that was relevant for this fill.
| EmptyFill | ||
![]() | name : String
The name that refers to this object.
| DegrafaObject | |
![]() | objectBindings : Array | DegrafaObject | |
![]() | parent : IDegrafaObject
The current degrafa object parent.
| DegrafaObject | |
| requester : IGeometryComposition
[write-only]
| EmptyFill | ||
| restartFunction : Function [read-only]
Provides access to a cached function for restarting the last used fill either it the same context, or , if context is provided as an argument,
then to an alternate context.
| EmptyFill | ||
![]() | suppressEventProcessing : Boolean
Temporarily suppress event processing for this object.
| DegrafaObject | |
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| EmptyFill | ||
![]() |
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = true):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
| DegrafaObject | |
|
begin(graphics:Graphics, rc:Rectangle):void
Begins the fill for the graphics context.
| EmptyFill | ||
![]() |
dispatchEvent(evt:Event):Boolean
Dispatches an event into the event flow.
| DegrafaObject | |
![]() |
dispatchPropertyChange(bubbles:Boolean = false, property:Object = null, oldValue:Object = null, newValue:Object = null, source:Object = null):Boolean
Dispatches an property change event into the event flow.
| DegrafaObject | |
|
end(graphics:Graphics):void
Ends the fill for the graphics context.
| EmptyFill | ||
![]() |
hasEventListener(type:String):Boolean
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
| DegrafaObject | |
![]() |
initChange(property:String, oldValue:Object, newValue:Object, source:Object):void
Helper function for dispatching property changes
| DegrafaObject | |
![]() |
initialized(document:Object, id:String):void
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
| DegrafaObject | |
![]() |
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
| DegrafaObject | |
![]() |
willTrigger(type:String):Boolean
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
| DegrafaObject | |
| lastArgs | property |
lastArgs:Array [read-only]Provide access to the lastArgs array
Implementation public function get lastArgs():Array
| lastRectangle | property |
lastRectangle:Rectangle [read-only]Provides access to the last rectangle that was relevant for this fill.
Implementation public function get lastRectangle():Rectangle
| requester | property |
requester:IGeometryComposition [write-only]Implementation
public function set requester(value:IGeometryComposition):void
| restartFunction | property |
restartFunction:Function [read-only]Provides access to a cached function for restarting the last used fill either it the same context, or , if context is provided as an argument, then to an alternate context.
Implementation public function get restartFunction():Function
| EmptyFill | () | constructor |
public function EmptyFill()Constructor.
The EmptyFill constructor accepts no arguments
| begin | () | method |
public function begin(graphics:Graphics, rc:Rectangle):voidBegins the fill for the graphics context.
Parametersgraphics:Graphics — The current context to draw to.
|
|
rc:Rectangle — A Rectangle object used for fill bounds.
|
| end | () | method |
public function end(graphics:Graphics):voidEnds the fill for the graphics context.
Parametersgraphics:Graphics — The current context being drawn to.
|