XL: RGB Function May Map to Incorrect ColorLast reviewed: January 9, 1998Article ID: Q170781 |
The information in this article applies to:
SUMMARYWhen you use the RGB function in a Visual Basic for Applications, the color value of the RGB color of the index may be mapped to a color other than the color you expected. For example, RGB(65,0,0) is mapped to Dark Red, but RGB(64,0,0) is mapped to Black. The color property accepts an RGB triple and maps it to the nearest color index. When the property retrieves the color value, it returns the RGB color of the index, which may be different from the value you typed. In the example, RGB(65,0,0) is mapped to Dark Red (RGB(128,0,0)), but RGB(64,0,0) is mapped to Black (RGB(0,0,0)).
MORE INFORMATIONMicrosoft provides examples of Visual Basic for Applications procedures for illustration only, without warranty either expressed or implied, including, but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs. If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400. When you use an application method or property that accepts a color specification value, use a number that represents an RGB color value. An RGB color value specifies the relative intensity of the red, green, and blue colors that cause a specific color to be displayed. The following steps assume that you created a Visual Basic module that contains the following code
Sub ChangeRGB() ActiveSheet.Rectangles(1).Select With Selection.Interior .Pattern = xlSolid .Color = RGB([B1].Value, [B2].Value, [B3].Value) End With End Suband that you created a worksheet that contains the following values:
A1: Red B1: C1: D1: A2: Green B2: C2: D2: A3: Blue B3: C3: D3: A4: B4: C4: D4: A5: B5: C5: D5:To use the sample macro, follow these steps:
REFERENCESFor more information about the ShapeRange Object collection, click the Index tab in Microsoft Visual Basic Help, type the following text
ShapeRangeand then double-click the selected text to go to the "ShapeRange Object Collection" topic.
|
Additional query words: XL97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |