Back Previous Next


Linguist basic package - append

Syntax:

   append {value} to {string holder}

Keyword handler:

   net.eclecity.linguist.basic.keyword.BasicKAppend.class

Runtime handler(s):

   net.eclecity.linguist.basic.handler.BasicHAppend.class

Function:

Appends a string value to a string holder - most usually a buffer but may alternatively be an item such as a graphical text box that is able to accept strings. See also add.

Example(s):

   append " ...etc" to MyBuffer
   append left 5 of Line to Text


Back Previous Next