OutputVar := instance.Escape()
OutputVar := instance.Escape(EscapeChar)
Escapes current instance of MfString for use with AutoHotkey and returns a copy.
Returns string copy that has been escaped. All ,%`; are proceeded by `
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.
Escapes current instance of MfString for use with AutoHotkey and returns a copy.
Returns string copy that has been escaped. All ,%`; are proceeded by value of EscapeChar.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.
EscapeChar
The Char or string to use to escape with.
Defaults to ` also know as back-tick.
Can be MfString or MfChar instance. Also can be var contaning string.
Throws MfInvalidCastException if EscapeChar cannot be cast to string.
Throws MfArgumentNullException if EscapeChar is null.
Escapes ,%`; and double quotes. If EscapeChar is not one of the preceding chars then it is added to the preceding chars