Difference between revisions of "GetPlotWidth"

From MultiCharts
Jump to navigation Jump to search
m (Reverted edits by 176.8.90.7 (talk) to last revision by 194.84.116.138)
 
Line 1: Line 1:
 
Returns the plot line width value of the specified plot. Plot line width values range from 0 to 14.  
 
Returns the plot line width value of the specified plot. Plot line width values range from 0 to 14.  
 
   
 
   
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>GetPlotWidth(PlotNumber)</syntaxhighlight>  
 
<syntaxhighlight>GetPlotWidth(PlotNumber)</syntaxhighlight>  
  
Where: [[PlotNumber]] - a numerical expression specifying the plot number; plot numbers range from 1 to 999  
+
Where:  
 +
 
 +
:'''PlotNumber''' - a numerical expression specifying the plot number; plot numbers range from 1 to 999.
 +
 
 +
== Notes ==
 +
* Use [[SetPlotWidth]] to set the width of a specified plot.
 
   
 
   
==== Example ====
+
== Example ==
 
Assign the plot line width value of Plot1 to Value1 variable:  
 
Assign the plot line width value of Plot1 to Value1 variable:  
  
<syntaxhighlight>Value1=GetPlotWidth(1);</syntaxhighlight>  
+
<syntaxhighlight>Value1 = GetPlotWidth(1);</syntaxhighlight>  
 
  
 
[[Category:Plotting]]
 
[[Category:Plotting]]

Latest revision as of 13:36, 19 February 2012

Returns the plot line width value of the specified plot. Plot line width values range from 0 to 14.

Usage

GetPlotWidth(PlotNumber)

Where:

PlotNumber - a numerical expression specifying the plot number; plot numbers range from 1 to 999.

Notes

Example

Assign the plot line width value of Plot1 to Value1 variable:

Value1 = GetPlotWidth(1);