ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearColorProfileSettings Class / ImGearColorProfileSettings Constructor
Reference to pageview to refresh its content when the settings are applied.
Example




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

    Parameters

    pageView
    Reference to pageview to refresh its content when the settings are applied.

    Return Value

    An instance of ImGearColorProfileSettings class GUI dialog.
    Remarks
    This constructor creates an instance of ImGearColorProfileSettings class GUI dialog. .
    Example
    using (ImGearColorProfileSettings dlg = new ImGearColorProfileSettings(igPageView))
    {
        dlg.ShowDialog(igPageView.Parent);
    }
    Using dlg As New ImGearColorProfileSettings(igPageView)
        dlg.ShowDialog(igPageView.Parent)
    End Using
    See Also