ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearColorBookSettings Class / ImGearColorBookSettings Constructor
Reference to the page view object.
Example




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

    Parameters

    pageView
    Reference to the page view object.

    Return Value

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