|
Previous Top Next |
Prototype: | (String pLine) |
pLine | String to append to the currently selected line |
This method is used to append text to the currently selected line, for example after a call to the GetLine method. Note that no space is added between the existing data and the new data. If you want additional space make sure that you add it to the data that you pass to the AppendToLine method.
Example:
ITS ITStringClass
Code
ITS.AddLine('One',True)
ITS.AddLine('Two')
ITS.AddLine('Three')
If ITS.GetLine(2)
ITS.SetLineValue('Twenty')
ITS.AppendToLine(' two')
End
Now the value of the second line is "Twenty two"
See also: