IsNotUsed property: Field class
Description
This property is True if this field has been set as NotUsed with the SetDBFieldNotUsed function.
This property is read-only.
Example
&field = GetField(Field.RC_TEST_PB);
&ret = &field.IsNotUsed;
If (&ret = True) Then
MessageBox(0, "MetaData Fn Status", 0, 0, "Field is NOTUSED");
Else
MessageBox(0, "MetaData Fn Status", 0, 0, "Field is used.");
End-If;