PenDetectable

This is a Boolean flag that indicates whether this field has the pen detectable attribute. A value of 1 means the field does have the pen detectable attribute; otherwise, the value is 0. This property is read-only. The following example shows this property.

' Create a new PS object associated with connection A
dim myPSObj as new lsxECLPS("A")
 
' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
If (myPSObj.lsxECLFieldList.Count) Then
' Check if the first field is pen detectable
  if (myPSObj.lsxECLFieldList(1).PenDetectable) then
    call field_pen_detectable
  endif
Endif