Skip to content

Construct_Object - cObject

Include: Built in; no package required.

Runs during object construction.

Type: Procedure

Parameters

None.

Syntax

Procedure Construct_Object

Call

Send Construct_Object

Description

Subclasses commonly Forward Send Construct_Object before defining properties or other initialization. The base cObject implementation does no work itself.

Example

Procedure Construct_Object
    Forward Send Construct_Object

    Property String psValue
End_Procedure