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



vendorFlag
A value that indicates vendor specific flag.
prefix
Array that contains the prefix for each color name (32-byte field that includes null termination).
suffix
Array that contains the suffix for each color name (32-byte field that includes null termination).
namedColors
IccNamedColor2Data structure that contains the named color's data.
Initializes a new IccNamedColor2 with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal vendorFlag As Integer, _
   ByVal prefix() As Byte, _
   ByVal suffix() As Byte, _
   ByVal namedColors() As IccNamedColor2Data _
)
Visual Basic (Usage)Copy Code
Dim vendorFlag As Integer
Dim prefix() As Byte
Dim suffix() As Byte
Dim namedColors() As IccNamedColor2Data
 
Dim instance As IccNamedColor2(vendorFlag, prefix, suffix, namedColors)
C# 
public IccNamedColor2( 
   int vendorFlag,
   byte[] prefix,
   byte[] suffix,
   IccNamedColor2Data[] namedColors
)
C++/CLI 
public:
IccNamedColor2( 
   int vendorFlag,
   array<byte>^ prefix,
   array<byte>^ suffix,
   array<IccNamedColor2Data>^ namedColors
)

Parameters

vendorFlag
A value that indicates vendor specific flag.
prefix
Array that contains the prefix for each color name (32-byte field that includes null termination).
suffix
Array that contains the suffix for each color name (32-byte field that includes null termination).
namedColors
IccNamedColor2Data structure that contains the named color's data.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also