Append a string value to a string buffer. If the buffer does not exist, Append works like Set. If the buffer is of a different type, an exception is thrown.

Syntax

Smartsite SXML CopyCode image Copy Code
buffer.append(string name, enum scope, string value)
buffer.append(string name, string value)

Parameters

Name Data Type Description
name String The name of the buffer.
scope Enum The scope of the buffer.
Enum values:
  • Auto
    Field scope by default; Region scope when enclosed by a region tag.
  • Field
    Field scope.
  • Page
    Page scope.
  • Region
    Region scope.
value String The value to be appended.

Return Value

None.

Expand image Example

SXML