Example

The following example shows how to find an lsxECLField object in the lsxECLFieldList that contains the position indicated by the row and col parameters.

dim myFInfoObj as lsxECLField
 
' Create a new PS object associated with connection A
dim myPSObj as new lsxECLPS("A")
 
' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
 
' Get the field that contains row 2, column 1
myFInfoObj = myPSObj.lsxECLFieldList.FindFieldByRowCol(2,1)