Name of Implemented CLASS

 

Hi,

Not sure how accurate my description is but just trying to find out how to find the name from within a class

Example:


I create a class called DisplayTable

I then declare two occurrences of the class Trades & Summary

so I can call

Trades.Test(optional variables) &

Summary.Test(optional variables)  


Is there a means to obtain the name Trades or Summary at run time when using the class (I want to create a label with x,y coordinates preceded by Trades or Summary)

Any help appreciated


JUST decided to use an init function - i.e. Trades.Init("Trades") or Summary.Init("Summary") and pass the name through - works fine and simple