MetaClass: 3 Exported Message Ranges

Up: GEOS SDK TechDocs | Up | Down | Prev: 2 Utility Messages | Next: 3.1 Window Messages

MetaClass exports a number of ranges of messages for use by its subclasses (such as GenClass and VisClass ) for various purposes. In most cases, you will not need to use any of these ranges for your own messages. The names of these ranges, however, are listed below. For information on exporting and importing message ranges, see the GEOS Programming chapter.

 @importMessage MetaApplicationMessages, 
	type0 MSG_MYAPP_DO_SOMETHING(
		type1		arg1,
		type2		arg2);
/* ... */
@method MyProcessClass, MSG_MYAPP_DO_SOMETHING
/* ...Insert Handler here */
/* ... */
@method MyDocumentClass, MSG_MYAPP_DO_SOMETHING
/* ...Insert Handler here */

Up: GEOS SDK TechDocs | Up | Down | Prev: 2 Utility Messages | Next: 3.1 Window Messages