Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

ProgressBar.RunTask Event

Occurs to execute the server side task.

[Visual Basic]
Public Event RunTask As ProgressTaskEventHandler
[C#]
public event ProgressTaskEventHandler RunTask;

Event Data

The event handler receives an argument of type ProgressTaskEventArgs containing data related to this event. The following ProgressTaskEventArgs properties provide information specific to this event.

Property Description
ExtraData Returns the current additional data.
IsStopped Returns a value indicating whether the task has been stopped.
TaskID Gets the unique ID of the task.
Value Returns the current value.

Remarks

Note: This is a very special event. You can not update any other UI element other than moving the progress bar inside this event handler. For example, setting a Label's Visible to true will not work. All such calls are completely ignored.

Please refer to the sample code for possible workarounds for this restriction.

See Also

ProgressBar Class | EO.Web Namespace


Direct link to this topic