Normal
Normal
Returns true if field is a regular field (not protected or high intensity).
Syntax
FlexFields(Index).Normal
Parameters
Index |
Integer, input |
|
Index of the field object. |
Example
Sub Main()
If FlexFields(1).Normal Then
MsgBox "First field is normal."
Else
MsgBox "First field is not normal (is protected, high intensity or both)."
End If
End Sub