Table of Contents

Delegate vdPromptDelegate

Namespace
vdWebLibrary
Assembly
JsPropertiesExtractor.dll

Represents a method that will handle the vdPrompt event.

public delegate void vdPromptDelegate(vdrawObj sender, string message)

Parameters

sender vdrawObj

The vdrawObject that caused the event.

message string

The message to be displayed.

Examples

function _vdPrompt(sender, message) {
    //Code to do
}

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

Constructors

vdPromptDelegate(object, IntPtr)