Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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
)
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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also