Difference between revisions of "CREATEOBJECT()"

From Recital Documentation Wiki
Jump to: navigation, search
(Class)
Line 1: Line 1:
 
 
 
==Purpose==
 
==Purpose==
 
Function to create a new object based on a defined class.
 
Function to create a new object based on a defined class.
Line 26: Line 24:
  
 
==Products==
 
==Products==
Recital Database Server, Recital Mirage Server, Recital Terminal Developer
+
Recital Server, Recital  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Objects]]
 
[[Category:Objects]]
 
[[Category:Objects Functions]]
 
[[Category:Objects Functions]]

Revision as of 16:25, 27 November 2009

Purpose

Function to create a new object based on a defined class.


Syntax

CREATEOBJECT(<expC> [,<exp1>,<exp2>…)


See Also

ACLASS(), ADDPROPERTY(), AMEMBERS(), CLASS, COMPOBJ(), DEFINE CLASS, DODEFAULT(), METHOD, NEWOBJECT(), REMOVEPROPERTY(), SET CLASSLIBRARY, WITH


Description

The Visual FoxPro compatible CREATEOBJECT() function is used to create a new object based on a defined class. The name of the class is specified in <expC>. Any parameters required for the object creation are specified in a comma-separated list after the class name.

The CREATEOBJECT() function returns a reference to the newly created object.


Example

myObject = createobject("MyClass")


Products

Recital Server, Recital