EvObjectProperty Interface
The EvObjectProperty TS interface defines a blueprint of a JS object that specifies a custom property of an object item.
Properties
An EvObjectProperty object has the following properties:
optional isReadOnly: boolean;A Boolean, a flag indicating whether a given custom object item property is read-only (
true) or editable (false). Updating read-only custom object item properties is not allowed. Custom object item properties created by users are never read-only.key: string;A string, a key of the custom object item property.
value: string;A string, a value of the custom object item property.
Examples
{
isReadOnly: true,
key: "Component"
value: "Engine"
}
25 March 2025