ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearSpotColorsMissingBox Class / ImGearSpotColorsMissingBox Constructor
Array of spot colors.
Example




In This Topic
    ImGearSpotColorsMissingBox Constructor
    In This Topic
    Initializes a new instance of the ImGearSpotColorsMissingBox class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal spotColors As ArrayList _
    )
    'Usage
     
    Dim spotColors As ArrayList
     
    Dim instance As New ImGearSpotColorsMissingBox(spotColors)
    public ImGearSpotColorsMissingBox( 
       ArrayList spotColors
    )
    public: ImGearSpotColorsMissingBox( 
       ArrayList* spotColors
    )
    public:
    ImGearSpotColorsMissingBox( 
       ArrayList^ spotColors
    )

    Parameters

    spotColors
    Array of spot colors.

    Return Value

    An instance of ImGearSpotColorsMissingBox class GUI dialog.
    Example
    using (ImGearSpotColorsMissingBox dlg = new ImGearSpotColorsMissingBox(spotColorList))
    {
        dlg.ShowDialog();
    }
    Using dlg As New ImGearSpotColorsMissingBox(spotColorList)
        dlg.ShowDialog()
    End Using
    See Also