Example
The following example shows how to retrieve the characters of the field:
' Create a new PS object associated with connection A
dim myPSObj as new lsxECLPS("A")
dim fieldData as String
' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
If (myPSObj.lsxECLFieldList.Count) Then
' Get the characters from the first field's text plane
fieldData = myPSObj.lsxECLFieldList(1).GetText()
Endif