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
actionBaseActionObjThe action (BaseActionObj) that its state is changed.
statusstringCurrent status of the action. Possible statuses are "start", "count", "end".
Examples
function _onStateChanged(action, status) {
//Code to do
}
function fn(){
vdcanvas.GetUserLine(_onStateChanged);
}