Alphanumeric
Alphanumeric
Returns true if cursor is in an alphanumeric field (not a numeric field.) Not applicable to VT emulation.
Syntax
FlexOIA.Alphanumeric
Example
Sub Main()
If FlexOIA.Alphanumeric Then
MsgBox "Cursor is in an alphanumeric field."
Else
MsgBox "Cursor is not in an alphanumeric field."
End If
End Sub