ClassStore
4D.ClassStore properties are available classes and class stores.
4D exposes two class stores:
Summary
| .classClassName : 4D.Class exposed 4D.Class class in the class store |
.classStoreName : 4D.ClassStore4D.ClassStore published by a component |
.classClassName
.classClassName : 4D.Class
Description
Each exposed 4D.Class class in the class store is available as a property of the class store.
Example
var $myclass:=cs.EmployeeEntity
//$myclass is a class from the cs class store
.classStoreName
.classStoreName : 4D.ClassStore
Description
Each 4D.ClassStore published by a component is available as a property of the class store.
The name of the class store published by a component is the component namespace as declared in the component's Settings page.
Example
var $classtore:=cs.AiKit
//$classtore is the class store of the 4D AIKit component