Table of Contents

Delegate onStateChangedDelegate

Namespace
vdWebLibrary
Assembly
JsPropertiesExtractor.dll

Represents a method that will handle the change of state during an action.

public delegate void onStateChangedDelegate(BaseActionObj action, string status)

Parameters

action BaseActionObj

The action (BaseActionObj) that its state is changed.

status string

Current status of the action. Possible statuses are "start", "count", "end".

Examples

function _onStateChanged(action, status) {
    //Code to do
}

function fn(){
    vdcanvas.GetUserLine(_onStateChanged);
}

Constructors

onStateChangedDelegate(object, IntPtr)