%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdPromptDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdPromptDelegate Delegate
sender
The vdrawObject that caused the event.
message
The message to be displayed.
Represents a method that will handle the vdPrompt event.

Syntax

JScript 
public delegate vdPromptDelegate( 
   sender : vdrawObj,
   message : String
)

Parameters

sender
The vdrawObject that caused the event.
message
The message to be displayed.

Example

C#Copy Code
  
function _vdPrompt(sender, message) { 
    //Code to do 

 
function fn(){ 
    vdcanvas.vdPrompt = _vdPrompt; 
}

See Also