StartRow

StartRow is the row of the first character of the field. The StartRow 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 StartRow as Long
 
' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
If (myPSObj.lsxECLFieldList.Count) Then
' Get the starting row of the first field in the list
  StartRow = myPSObj.lsxECLFieldList(1).StartRow
Endif