%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdprogressDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdprogressDelegate Delegate
eventargs
The progressEventArgsobject of the event.
Represents a method that will handle the vdprogress event.

Syntax

JScript 
public delegate vdprogressDelegate( 
   eventargs : progressEventArgs
)

Parameters

eventargs
The progressEventArgsobject of the event.

Example

C#Copy Code
  
function _vdprogress(e) { 
    //Code to do 

 
function fn(){ 
    vdcanvas.vdprogress = _vdprogress; 
}

See Also