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