PrintText¶ Note This function only exists in REV02 and above. Description¶ Prints a const char string to the console. Parameters¶ mode The print mode of the message. message The const char value to print. Return Value¶ None. Syntax¶ CC++ RSDK.PrintText(int32 mode, const char *message); RSDKTable->PrintText(int32 mode, const char *message); Example¶ CC++ RSDK.PrintText(PRINT_NORMAL, "This is a test message."); RSDKTable->PrintText(Dev::PRINT_NORMAL, "This is a test message.");