Detect Self is encrypted

Is there a way for a custom class object to determine if it is an encrypted version of itself?

as far as I know from last 15 years: no

But IDE script may be able to know that.

Depending on how you plan to use this, you could do this:

  1. Add a constant “kIsEncypted As Boolean = False”.
  2. Create an IDE script to encrypt the class. It will first set that constant to True.
  3. Create an IDE script to decrypt the class. It will decrypt, then set that constant to False.

Curious why it would matter ?