140 Chapter 15 Script SDK
Append
Class Command
Description Adds characters to an existing command string, created with a call to SetCmdName().
Allowable arguments are char pointer, integer, and double-precision float. In the case of
an integer argument, the radix for the base of the resulting string can be specified
optionally. The default radix is 10.
Command syntax sc.Append(const char* txt)
sc.Append(UINT32 value, UINT32 RADIX=10)
sc.Append(double value)
Example Refer to example programs apndflt.cpp, apndint.cpp, sampseq.cpp, testapi.cpp
Related commands Exec(), GetCmdName(), Reset(), SetCmdName,