char *UILEventString (int event);
This function return a string containing the symbolic name for a User Interface Library event. This function can be used as a debugging aid by printing the names of events as they are received by a callback function.
Example:
int CVICALLBACK CallbackToDebug(int panel, int control, int event, void *callbackData, int eventData1, int eventData2)
{
printf("Event received is %s\n", UILEventString(event));
}
Input | ||
Name | Type | Description |
event | integer | Pass a User Interface Library event number. |
Name | Type | Description |
eventNameString | char * | Returns a pointer to a string of characters containing the symbolic name of the event. The string should not be freed or altered. If the event is not a predefined User Interface Library Event, the string "Event #" is returned, where # is the event number. In this case, the string is valid only until the next call to UILEventString. |