Protected

Returns true if protected field.


Syntax

FlexFields(Index).Protected


Parameters


Index

Integer, input



Index of the field object.


Example

Sub Main()

If FlexFields(1).Protected Then

MsgBox "First field is protected."

Else

MsgBox "First field is unprotected."

End If

End Sub