Attribute
Attribute
Returns the attribute byte for the field.
Syntax
FlexFields(Index).Attribute
Parameters
Index |
Integer, input |
|
Index of the field object. |
Example
Sub Main()
If FlexFieldAttribute.IsProtected(FlexFields(1).Attribute)Then
MsgBox "First field is a protected field"
Else
MsgBox "First field is not a protected field."
End If
End Sub