How do we determine if a class is static and cannot be extended?

AndyB

Well-known member
How can we determine if a class is static and cannot be extended?

Is the only way to determine if a class is static is to create an add-on just to find out it doesn't work?
 
Look in the class and see how the functions are defined. They'll have the keyword static in them.
 
Thank you kindly for the information, Jeremy.

So if I find any functions within a class that are static, the class is considered static and cannot be extended?
 
Top Bottom