CONST

The CONST function outputs the defined constant.

Input/Output

Number of Connections: 0
OutputData TypeDescription
Output1StringThe string defined in the Data property.

Property

NameProperty TypeDescription
DatavariantThe constant.
If a value is empty, return a following data.

DataTypeOutput
Stringan empty string
Booleanfalse
Othersnull

DataTypechoiceSpecifies data type.
EnableMetaCharacterboolean Specifies the option if the following meta characters and unicode escape can be used in Data.

Meta CharacterControl Character
\tTAB
\rCR
\nLF

Like "\u0041", you can describe the character by code point of Unicode. The "\" character can be used as an escape character. Use "\\" to output a single "\". A single "\" will result in a compile error.
true [true] - Use meta characters and unicode escape.
false [false] - Don't use meta characters and unicode escape.

Operation