Length

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