%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
doublelinewidth Method
See Also  Example
vdWebLibrary Namespace > ScriptCommands Class : doublelinewidth Method
nvalue
A double value in Drawing units.
Set the passed value as active width in Drawing units for the double line draw commands. Commands that create new double line like doubleline and doublelinerect select this value as the width of eah segment in drawing units.

Syntax

JScript 
public function doublelinewidth( 
   nvalue : double
);

Parameters

nvalue
A double value in Drawing units.

Example

C#Copy Code
vdrawobj.scriptCommand.doublelinewidth(0.25); 
vdrawobj.scriptCommand.doubleline();//all the user lines will be added using the a width of 0.25 drawing units.

See Also