Difference between revisions of "LegacyColorToRGB"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns an RGB color number that corresponds to the specified legacy color value; the number ranges from 0 to 16777215. ==== Usage ==== <syntaxhighlight>LegacyColorToRGB(Le...")
 
Line 4: Line 4:
 
<syntaxhighlight>LegacyColorToRGB(LegacyColorValue)</syntaxhighlight>  
 
<syntaxhighlight>LegacyColorToRGB(LegacyColorValue)</syntaxhighlight>  
  
Where: <syntaxhighlight>LegacyColorValue</syntaxhighlight> - a legacy color value from 1 to 16  
+
Where: [[LegacyColorValue]] - a legacy color value from 1 to 16  
 
   
 
   
 
==== Example ====
 
==== Example ====
Assign a value, representing the color 4 (Green) under the legacy color scheme, to Value1 (Value1 will be assigned a value of 65280):  
+
<syntaxhighlight>Assign a value, representing the color 4 (Green) under the legacy color scheme, to Value1 (Value1 will be assigned a value of 65280):  
  
<syntaxhighlight>Value1 = LegacyColorToRGB(4);</syntaxhighlight>  
+
Value1 = LegacyColorToRGB(4);</syntaxhighlight>  
 
   
 
   
  

Revision as of 12:50, 20 January 2012

Returns an RGB color number that corresponds to the specified legacy color value; the number ranges from 0 to 16777215.

Usage

LegacyColorToRGB(LegacyColorValue)

Where: LegacyColorValue - a legacy color value from 1 to 16

Example

Assign a value, representing the color 4 (Green) under the legacy color scheme, to Value1 (Value1 will be assigned a value of 65280): 

Value1 = LegacyColorToRGB(4);