Example
The following example shows how to retrieve a text string from the presentation space of the connection associated with this lsxECLPS object.
' Create an lsxECLPS object associated with connection A
dim myPSObj as new lsxECLPS("A")
dim scrnText as String
' Get all the text from the text plane.
scrnText = myPSObj.GetText()
' Get 10 characters from the text plane starting
' at row 3, column 1
scrnText = myPSObj.GetText(3,1,10)