Syntax 

New objtype


Group 

Operator 


Description 

Returns a new instance of objtype.


Parameters

Description

objtype 

This is the new object's type.


See Also 

Objects


Example

Sub Main

    Dim obj As Object

    Set obj = New Dictionary

End Sub