ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.FreqIP Namespace / ImGearComplexObject Class / ImGearComplexObject Constructor / ImGearComplexObject Constructor(Int32,Int32)
Width of the object to be created.
Height of the object to be created.




In This Topic
    ImGearComplexObject Constructor(Int32,Int32)
    In This Topic
    Initializes a new instance of the ImGearComplexObject class with empty but allocated buffers, based on the given width and height.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal width As Integer, _
       ByVal height As Integer _
    )
    'Usage
     
    Dim width As Integer
    Dim height As Integer
     
    Dim instance As New ImGearComplexObject(width, height)
    public ImGearComplexObject( 
       int width,
       int height
    )
    public: ImGearComplexObject( 
       int width,
       int height
    )
    public:
    ImGearComplexObject( 
       int width,
       int height
    )

    Parameters

    width
    Width of the object to be created.
    height
    Height of the object to be created.

    Return Value

    New ImGearComplexObject class object.
    Remarks
    This constructor creates a new complex object with empty but allocated buffers, based on the given width and height. The buffers can be populated later by obtaining pointers to the buffers.
    See Also