PenSelectable
PenSelectable
Returns true if pen selectable field.
Syntax
FlexFields(Index).PenSelectable
Parameters
Index |
Integer, input |
|
Index of the field object. |
Example
Sub Main()
If FlexFields(1).PenSelectable Then
MsgBox "First field is pen selectable."
Else
MsgBox "First field is not pen selectable."
End If
End Sub