ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearColorBookProperties Class / ImGearColorBookProperties Constructor
Reference to color book object.
Example




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

    Parameters

    colorBook
    Reference to color book object.

    Return Value

    An instance of ImGearColorBookProperties class GUI dialog.
    Example
    if (curBook != null)
    {
        using (ImGearColorBookProperties dlg = new ImGearColorBookProperties(curBook))
        {
            dlg.ShowDialog(igPageView.Parent);
        }
    }
    If curBook IsNot Nothing Then
        Using dlg As New ImGearColorBookProperties(curBook)
            dlg.ShowDialog(igPageView.Parent)
        End Using
    End If
    See Also