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...
In order to use FromLibrary you need to know the name of the inner member that you want to access.
Then you should call SetProperty to set the property.