Wish KEYWORDS: Private Types

Saverio

Member
Licensed User
Longtime User
Private Types visible only inside a class.
Declaring a class, I don't want see them in the properties/methods list shown at that moment.

Of Course Public Types must remain :)
Thank you
 

derez

Expert
Licensed User
Longtime User
Not sure I understand the problem.
When setting a type in a class it is not visible outside of the class.
When setting a variable as that type, if you set it private - you will not see it outside of the class. If public - then it is visible.
 

Saverio

Member
Licensed User
Longtime User
@derez Thank you for reply.
I will explain myself better:

As shown in the picture below

img4.jpg

In the next pictures is shown what you will get, for example, in Main module

img5.jpg

and

img6.jpg

As you can see, Types, even declared in Class Globals sub(that should have class scope), all of them are visible
in Main module.

Saverio
 

Saverio

Member
Licensed User
Longtime User
@Erel, thank you for reply.

So is not possible Private Types, or, are you planning some changes for the future?

Saverio
 
Top