%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
ScriptEntityDelegate Delegate
See Also 
vdWebLibrary Namespace : ScriptEntityDelegate Delegate
vdraw
The vdraw control object. vdrawObj
entity
Entitiy that added to the document when the script command finished.For a example it can be a line, arc , circle, polyline , text etc. If the command canceled by user then the entity will be null else the entity will exist.
Represents a user define function that will be called when commands that draw entities will be called from scriptCommand.like line etc.

Syntax

JScript 
public delegate ScriptEntityDelegate( 
   vdraw : vdrawObj,
   entity : Object
)

Parameters

vdraw
The vdraw control object. vdrawObj
entity
Entitiy that added to the document when the script command finished.For a example it can be a line, arc , circle, polyline , text etc. If the command canceled by user then the entity will be null else the entity will exist.

See Also