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