Version

ProgressChanging Property

Event fired when the value of the progressbar is changing.
Syntax
'Declaration
 
Public Property ProgressChanging As String
public string ProgressChanging {get; set;}
Example
WebProgressBar.ClientEvents.ProgressChanging = "WebProgressBar_ProgressChanging"
WebProgressBar.ClientEvents.ProgressChanging = "WebProgressBar_ProgressChanging";
// The client event 'ProgressChanging' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the ProgressChangingEventArgs

function WebProgressBar_ProgressChanging(sender, e) {

    //Returns the current fill value of the bar
    var currentFill = e.getCurrentFill();

    //Returns the new fill value of the bar
    var newFill = e.getNewFill();

    window.status = " Current Fill : " + currentFill + "; New Fill : " + newFill;
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also