You can create and maintain dynamic property clusters for a class in the Class Browser, provided it is not a collection class. For more details, see "
Alternatively, you can create and maintain dynamic property clusters by executing the methods of the
Method | Description |
---|---|
|
Adds and returns a new dynamic property cluster to the receiving class |
|
Compacts dynamic property clusters in which dynamic property instances were deleted |
|
Deletes a dynamic property cluster from the receiving class |
|
Returns the dynamic property cluster with the specified name from the class of the receiver |
In the following example, a runtime dynamic property cluster called CustomerCluster is added to the Customer class.
begin beginTransaction; Customer.addDynamicPropertyCluster("CustomerCluster"); commitTransaction; end;