base.StringBuffer.create

Create a string buffer object.

Syntax

base.StringBuffer.create()
  RETURNS base.StringBuffer

Usage

Use the base.StringBuffer.create() class method to create a string buffer object.

The created object must be assigned to a program variable defined with the base.StringBuffer type.

Example

DEFINE buf base.StringBuffer
LET buf = base.StringBuffer.create()
...

For a complete example, see Example 2: Modify a StringBuffer with a function.