Access to enums in library

Discorez

Member
Licensed User
Longtime User
I have a some library, with one class (ClassName) and public enumeration (SomeEnum), outside this class.
How to get access to to enum with Door library (FromLibrary method)?

ClassNameObject.New1
ClassNameObject.Property1 = "Bla-Bla" 'it work
ClassNameObject.Property2 = SomeEnum.Field1 'is not work, SomeEnum - unknown object...

Or it is impossible?
 

Discorez

Member
Licensed User
Longtime User
Hi, Erel.
Unfortunately, source codes isn't available.
If they were, I would add these enums in a class.
 
Top