Left aligns a string within a string variable, or copies a variable of one user-defined type to another variable of a different user-defined type.
Syntax
LSet stringvar = string
LSet varname1 = varname2
The LSet statement syntax has these parts:
Part | Description |
---|---|
stringvar | Required. Name of string variable. |
string | Required. String expression to be left-aligned within stringvar. |
varname1 | Required. Variable name of the user-defined type being copied to. |
varname2 | Required. Variable name of the user-defined type being copied from. |
Remarks
LSet replaces any leftover characters in stringvar with spaces.
If string is longer than stringvar, LSet places only the leftmost characters, up to the length of the stringvar, in stringvar.
Warning Using LSet to copy a variable of one user-defined type into a variable of a different user-defined type is not recommended. Copying data of one data type into space reserved for a different data type can cause unpredictable results.
When you copy a variable from one user-defined type to another, the binary data from one variable is copied into the memory space of the other, without regard for the data types specified for the elements.