OutputVar := instance.EscapeSend()
Escape current instance of MfString for use with the send command and returns a copy.
Returns string copy that has been escaped.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.
Send command interprets some chars different such as # ! ^ + when sending strings. These characters are escaped to prepare them for use with the send command
; if clipboard contained #WhatTime !My hashtag
myStr := new MfString(Clipboard)
sendText := myStr.EscapeSend() ; {#}WhatTime {!}My hashtag
Send, % sendText