Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In this section, you will find a frequently used function for the string editor. Please refer to the table below for the applicable function.

Type

Format

Description

Function

GetLength(Tag)

Returns the number of characters in a string tag.

Function

StringTable (“Group Number”, “String number in a group”)

Gets string data from the string table.

 

GetLength

Returns the number of characters in a string tag.

Function

n = GetLength (TAGTag)

Description

Returns the number of characters in a string tag. This includes spaces and special characters.

Example

“A” is the tag assigned to the object. “ENG” is the string tag: “Welcome”. The function returns the value 7.

A = GetLength(ENG);

...