StartCol

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