ArcObjects Library Reference (Display)  

IColor.GetCIELAB Method

The CIELAB value of color.

[Visual Basic .NET]
Public Sub GetCIELAB ( _
    ByRef l As Double, _
    ByRef a As Double, _
    ByRef b As Double _
)
[C#]
public void GetCIELAB (
    ref double l,
    ref double a,
    ref double b
);
[C++]
HRESULT GetCIELAB(
  double* l,
  double* a,
  double* b
);
[C++]

Parameters

l [out]   l is a parameter of type double a [out]   a is a parameter of type double b [out]   b is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

This method retrieves the color, for exmaple from StyleGallery, and convert it to device independent color attributes.

Remarks

l = 0 to 100, a = -120 to 120, b = -120 to 120

See Also

IColor Interface