ClassStore
4D.ClassStore properties are available classes and class stores.
4D exposes two class stores:
概要
| .classClassName : 4D.Class exposed 4D.Class class in the class store |
.classStoreName : 4D.ClassStore4D.ClassStore published by a component |
.classClassName
.classClassName : 4D.Class
説明
Each exposed 4D.Class class in the class store is available as a property of the class store.
例題
var $myclass:=cs.EmployeeEntity
//$myclass is a class from the cs class store
.classStoreName
.classStoreName : 4D.ClassStore
説明
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.
例題
var $classtore:=cs.AiKit
//$classtore is the class store of the 4D AIKit component