Example
The following example shows how to copy a text string to the presentation space of the connection associated with an lsxECLPS object.
' Create an lsxECLPS object associated with ECL Connection A
dim myPSObj as new lsxECLPS("A")
' Copy a string to the current cursor position in the Presentation
' Space of ECL Connection A
myPSObj.SetText("Text to copy to PS")
' Copy a string to a specific location in the Presentation Space
' of ECL Connection A
myPSObj.SetText("Text to copy to PS", 23, 1)