sendTypeMsg

sendTypeMsg(message: String): Any;

The sendTypeMsg method of the Object class sends the specified message (type method) to the receiver.

The return type of the sendTypeMsg method is to allow for an optional return value from the method being called. If the called method returns a value, the Any result must be cast to the appropriate type, to access that result.

The message parameter must be the name of a valid type method, which is executed when the sendTypeMsg method is called. See also the Object class sendTypeMsgWithParams method.

2016.0.01 and higher