Difference between revisions of "Arw lock"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Locks corresponding arrow drawing so it cannot be moved manually. == Usage == <syntaxhighlight>Arw_Lock(TL_ID,true/false)</syntaxhighlight> == Parameters == :'''Arw_ID'''...")
 
 
Line 16: Line 16:
 
Unlock the arrow drawing with an ID number of 5:  
 
Unlock the arrow drawing with an ID number of 5:  
  
<syntaxhighlight>Value1 = Arw_Lock(5,true);</syntaxhighlight>
+
<syntaxhighlight>Value1 = Arw_Lock(5,false);</syntaxhighlight>
  
 
[[Category:ArrowDrawing]]
 
[[Category:ArrowDrawing]]

Latest revision as of 13:53, 8 May 2013

Locks corresponding arrow drawing so it cannot be moved manually.

Usage

Arw_Lock(TL_ID,true/false)

Parameters

Arw_ID - a numerical expression specifying the arrow drawing ID number.
true/false - locks or unlocks the drawing.

Example

Lock the arrow drawing with an ID number of 3:

Value1 = Arw_Lock(3,true);

Unlock the arrow drawing with an ID number of 5:

Value1 = Arw_Lock(5,false);