PrintString¶ Note This function only exists in REV02 and above. Description¶ Prints a String variable to the console. Parameters¶ mode The print mode of the message. message The String variable to print. Return Value¶ None. Syntax¶ CC++ RSDK.PrintString(int32 mode, String *message); Dev::PrintString(PrintModes mode, String *message); Example¶ CC++ RSDK.PrintString(PRINT_NORMAL, &string); Dev::PrintString(Dev::PRINT_NORMAL, &string);