Struct
Parent |
Reflection Object that holds information about structures.
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
Parent |
Object<Struct> |
The parent struct you want to check if this struct is a child of. |
| Name | Type | Description |
|---|---|---|
Is Child |
Bool |
True if this struct is a child of parent. |