ImageGear .NET - Updated
ImGearColorBookProperties Constructor
Example 




ImageGear24.Windows.Forms Assembly > ImageGear.Windows.Forms Namespace > ImGearColorBookProperties Class : ImGearColorBookProperties Constructor
Reference to color book object.
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

Reference

ImGearColorBookProperties Class
ImGearColorBookProperties Members
ImGearColorBook Class