Difference between revisions of "Tool Solid"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Constant, used in combination with TL_SetStyle to designate the Tool Solid style; can be substituted by a numerical value of 1. ==== Usage ==== <syntaxhighlight>TL_SetS...")
 
(No difference)

Latest revision as of 12:27, 26 January 2012

Constant, used in combination with TL_SetStyle to designate the Tool Solid style; can be substituted by a numerical value of 1.

Usage

TL_SetStyle(TL_ID, Tool_Solid)

or:

TL_SetStyle(TL_ID, 1)

Example

Set the style of the trendline with an ID number of 3 to Tool Solid:

Value1=TL_SetStyle(3, 1);

Set the style of the trendline with an ID number of 3 to Tool Solid:

Value1=TL_SetStyle(3, Tool_Solid);