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:
- Add a constant “kIsEncypted As Boolean = False”.
- Create an IDE script to encrypt the class. It will first set that constant to True.
- Create an IDE script to decrypt the class. It will decrypt, then set that constant to False.
Curious why it would matter ?