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