Delegate vdAfterOpenDocumentDelegate
- Namespace
- vdWebLibrary
- Assembly
- JsPropertiesExtractor.dll
Represents a method that will handle the vdAfterOpenDocument event.
public delegate void vdAfterOpenDocumentDelegate(vdrawObj sender)
Parameters
sendervdrawObjThe vdrawObject that has finished loading a document.
Examples
function _vdAfterOpenDocument(e) {
//Code to do
}
function fn(){
vdcanvas.vdAfterOpenDocument = _vdAfterOpenDocument;
}