Struct

Parent

Reflection Object that holds information about structures.

Properties

isConstructable : Bool

True if this struct can be constructed by the user directly.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

Is Constructable

Functions

getAllFunctions () → functions : Array<Object<Property>>

Returns all the functions of this and parent types.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get All Functions

Return Values
Name Type Description

Functions functions

Array<Object<Property>>

The functions this type implements including functions from parent types.

getAllProperties () → properties : Array<Object<Property>>

Returns all the properties of this and parent types.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get All Properties

Return Values
Name Type Description

Properties properties

Array<Object<Property>>

The properties this type implements including properties from parent types.

getFunctions () → functions : Array<Object<Function>>

Returns all the functions of this type.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get Functions

Return Values
Name Type Description

Functions functions

Array<Object<Function>>

The functions this specific type implements (excluding properties from parent types).

getParent () → parent : Object<Class>

Returns the parent type of this type.

Details

Flags

RuntimeSync MemberFunc

Display Name

Get Parent

Return Values
Name Type Description

Parent parent

Object<Class>

The parent type of this type.

getProperties () → properties : Array<Object<Property>>

Returns all the properties of this type.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get Properties

Return Values
Name Type Description

Properties properties

Array<Object<Property>>

The properties this specific type implements (excluding properties from parent types).

isChildOf (parent : Object<Struct>) → isChild : Bool

Allows to check if this struct is a child struct of the given struct or the given struct it self.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Is Child Of

Parameters
Name Type Description

Parent parent

Object<Struct>

The parent struct you want to check if this struct is a child of.

Return Values
Name Type Description

Is Child isChild

Bool

True if this struct is a child of parent.