This document is archived and information here might be outdated.  Recommended version.


ICieLabConversion.LabToRgb Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IC > ICieLabConversion Interface > ICieLabConversion.LabToRgb Method
ArcGIS Developer Help

ICieLabConversion.LabToRgb Method

Converts a CIELAB color to an RGB color.

[Visual Basic .NET]
Public Sub LabToRgb ( _
    ByRef RGB As Integer, _
    ByVal l As Double, _
    ByVal a As Double, _
    ByVal b As Double _
)
[C#]
public void LabToRgb (
    ref int RGB,
    ref double l,
    ref double a,
    ref double b
);
[C++]
HRESULT LabToRgb(
  OLE_COLOR* RGB,
  double l,
  double a,
  double b
);
[C++]
Parameters
RGB [out]

RGB is a parameter of type OLE_COLOR* l [in]
l is a parameter of type double a
a is a parameter of type double b
b is a parameter of type double

Product Availability

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

See Also

ICieLabConversion Interface