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