You're reading the documentation for an older, but still supported version
(GL013300).
For information on the latest version, please have a look at GL013301.
For information on the latest version, please have a look at GL013301.
MESSAGE_POPUP
This is a structure for providing typographic message related information is composed of the following fields when a program created through a typographic application is executed in a robot controller.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
256-byte message string |
|
256 |
|
|
0~2 |
Message level |
257 |
|
|
0~1 |
Button type |
Total size: 258 bytes
Defined in: DRFS.h
typedef struct _MESSAGE_POPUP
{
char _szText[MAX_STRING_SIZE]; /* message string */
unsigned char _iLevel; /* Message: 0, Warning: 1, Alarm: 2 */
unsigned char _iBtnType; /* Resume&Stop: 0, OK: 1 */
} MESSAGE_POPUP, *LPMESSAGE_POPUP;
typedef MESSAGE_POPUP MONITORING_POPUP;