Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
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
)
Managed Extensions for 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 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