%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdAfterOpenDocumentDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdAfterOpenDocumentDelegate Delegate
sender
The vdrawObject that has finished loading a document.
Represents a method that will handle the vdAfterOpenDocument event.

Syntax

JScript 
public delegate vdAfterOpenDocumentDelegate( 
   sender : vdrawObj
)

Parameters

sender
The vdrawObject that has finished loading a document.

Example

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

 
function fn(){ 
    vdcanvas.vdAfterOpenDocument = _vdAfterOpenDocument; 
}

See Also