This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Deprecated function |
This function has been deprecated in favor of multi line strings |
Description
Not really a keyword but a keyword block that allows handling of any text and/or multi line block of text without the need to include in double quote.
Syntax
RAWTEXT
<Whatever text here>
END RAWTEXT
StringVariable = RAWTEXT
<Whatever text here>
END RAWTEXT
Returns
String
All text included in RAWTEXT ... END RAWTEXT block will be returned
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
Rules for using RAWTEXT / END RAWTEXT
1.in case RAWTEXT is an assignment, it MUST begin on the same line of the assignment
2.no line continuation sign before RAWTEXT
3.after RAWTEXT there MUST be a a new line
4.END RAWTEXT MUST be placed into a new line without any other text
See also
Examples
DIM MyString AS STRING = RAWTEXT
Single/Multi line text buffer
will be loaded into MyString string variable.
END RAWTEXT