EndRow
EndRow is the row of the last character of the field. The EndRow property is a Long data type and is read-only. The following example shows this property.
' Create a new PS object associated with connection A
dim myPSObj as new lsxECLPS("A")
dim EndRow as Long
' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
If (myPSObj.lsxECLFieldList.Count) Then
' Get the ending row of the first field in the list
EndRow = myPSObj.lsxECLFieldList(1).EndRow
Endif