Difference between revisions of "Text lock"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Locks corresponding text drawing so it cannot be moved manually. == Usage == <syntaxhighlight>Text_Lock(TL_ID,true/false)</syntaxhighlight> == Parameters == :'''TL_ID''' ...")
 
 
Line 18: Line 18:
 
<syntaxhighlight>Value1 = Text_Lock(5,false);</syntaxhighlight>
 
<syntaxhighlight>Value1 = Text_Lock(5,false);</syntaxhighlight>
  
[[Category:Trendline Drawing]]
+
[[Category: Text Drawing‎]]

Latest revision as of 09:34, 13 May 2013

Locks corresponding text drawing so it cannot be moved manually.

Usage

Text_Lock(TL_ID,true/false)

Parameters

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

Example

Lock the text drawing with an ID number of 3:

Value1 = Text_Lock(3,true);

Unlock the text drawing with an ID number of 5:

Value1 = Text_Lock(5,false);