Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
IccNamedColor2Data Constructor
See Also 
Leadtools.ColorConversion Namespace > IccNamedColor2Data Structure : IccNamedColor2Data Constructor




colorRootName
An array that contains the color root name (32-byte field including null termination).
colorPcsCoordinates
An array that contains the named color's PCS encoding.
colorDeviceCoordinates
Array that contains the name color's device coordinates.
Initializes a new IccNamedColor2Data with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal colorRootName() As Byte, _
   ByVal colorPcsCoordinates() As UShort, _
   ByVal colorDeviceCoordinates() As UShort _
)
Visual Basic (Usage)Copy Code
Dim colorRootName() As Byte
Dim colorPcsCoordinates() As UShort
Dim colorDeviceCoordinates() As UShort
 
Dim instance As IccNamedColor2Data(colorRootName, colorPcsCoordinates, colorDeviceCoordinates)
C# 
public IccNamedColor2Data( 
   byte[] colorRootName,
   ushort[] colorPcsCoordinates,
   ushort[] colorDeviceCoordinates
)
Managed Extensions for C++ 
public: IccNamedColor2Data( 
   byte[]* colorRootName,
   ushort[]* colorPcsCoordinates,
   ushort[]* colorDeviceCoordinates
)
C++/CLI 
public:
IccNamedColor2Data( 
   array<byte>^ colorRootName,
   array<ushort>^ colorPcsCoordinates,
   array<ushort>^ colorDeviceCoordinates
)

Parameters

colorRootName
An array that contains the color root name (32-byte field including null termination).
colorPcsCoordinates
An array that contains the named color's PCS encoding.
colorDeviceCoordinates
Array that contains the name color's device coordinates.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also