| Package | com.esri.bacore.thematicmapping |
| Class | public class ProgressEvent |
| Inheritance | ProgressEvent flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| progress : int [read-only]
Current progress value. | ProgressEvent | ||
| Method | Defined By | ||
|---|---|---|---|
ProgressEvent(progress:int)
Creates a new instance of the ProgressEvent class. | ProgressEvent | ||
clone():Event [override]
Creates a clone of the event. | ProgressEvent | ||
toString():String [override]
Gets the description of the event. | ProgressEvent | ||
| Constant | Defined By | ||
|---|---|---|---|
| PROGRESS : String = taskProgress [static]
The ProgressEvent.PROGRESS constant defines the value of the
type property of the event object for a taskProgress event. | ProgressEvent | ||
| progress | property |
progress:int [read-only] Current progress value.
public function get progress():int| ProgressEvent | () | Constructor |
public function ProgressEvent(progress:int)Creates a new instance of the ProgressEvent class.
Parametersprogress:int — Current progress value in the range from 0 to 100.
|
| clone | () | method |
override public function clone():EventCreates a clone of the event.
ReturnsEvent — Shallow copy of the event.
|
| toString | () | method |
override public function toString():StringGets the description of the event.
ReturnsString — String representation of the event.
|
| PROGRESS | Constant |
public static const PROGRESS:String = taskProgress
The ProgressEvent.PROGRESS constant defines the value of the
type property of the event object for a taskProgress event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
babbles | false |
cancelable | false |
currentTarget | The Object that defines the event listener that handles the event. |
progress | Progress value. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |