Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
intrinsic class mx.central.controls.MProgressBar extends MovieClip {
    function getDisplayType (Void):String;
    function getLoadTarget (Void):Object;
    function getMaximum (Void):Number;
    function getMinimum (Void):Number;
    function getPercentComplete (Void):Number;
    function getPrefixText (Void):String;
    function getValue (Void):Number;
    function setChangeHandler (functionName:String, location:Object):Void;
    function setDisplayGraphics (display:Boolean):Void;
    function setDisplayText (bool:Boolean):Void;
    function setDisplayType (type:String):Void;
    function setLoadTarget (instance:Object):Void;
    function setMaximum (max:Number):Void;
    function setMinimum (min:Number):Void;
    function setPercentComplete (percent:Number):Void;
    function setPrefixText (message:String):Void;
    function setProgress (completed:Number, total:Number):Void;
    function setSize (width:Number):Void;
    function setValue (completed:Number):Void;
}