StringRef (Reserved Word)
This reserved word is used to define the data type of an input to an EasyLanguage function. This reserved word is for use in EasyLanguage functions only, and not for use in EasyLanguage studies (indicators, PaintBars, strategies, etc.) This reserved word is used to define a function input that is a text string value passed by reference.
StringRef
Examples
Input: MyMessage(StringRef);
declares the constant MyMessage as a String value to be used in a function.
Input: NewMessage(StringRef);
declares the constant NewMessage as a String value to be used in a function.