Summary
A fixed string is stored in the data buffer. Stores the data of Parameter 2 (Text) in Parameter 1 (Write-To Data Buffer).
Format
_strset(Write destination buffer, String)
Parameter 1: Data Buffer
Parameter 2: Text, Numeric Value (Text Code) (The valid range for Parameter 2 is 0 or 1 to 255.)
Example expression:
_strset (databuf0, "ABCD")
The string is stored in the data buffer as illustrated below:
A string of up to 255 characters can be specified. To create strings longer than this limit, store the string in another buffer and concatenate the strings with the string-concatenate function (_strcat).
To clear the data
buffer, create an empty string "" or set the value 0.
For example,
_strset (databuf0,"")
_strset (databuf0,0)