Object = New ( Class , [ constructor parameters... ] )
Instantiates the class Class. This routine works exactly like the NEW operator, except that the class name is specified at runtime and not at compile time.
Example :
hButton = New("Button", hParent)
has exactly the same effect as :
hButton = NEW Button(hParent)