Isreadonly

This built-in property returns whether the properties of an instance cannot or can be modified. It can be tested but tot modified.

Syntax

MY_INSTANCE.isReadonly

Example

# MYCUSTOMER is an instance for CUSTOMER class
# The UPDATE_CUSTOMER call would raise a 143 error if isReadonly is not 0
  If MYCUSTOMER.isReadonly=0
    Call UPDATE_CUSTOMER(MYCUSTOMER)
  Endif

See also

Instance, NewInstance, FreeInstance, FreeGroup, Developer Guide Classes