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




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

    Parameters

    pageView
    Reference to the page view object.

    Return Value

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