While going through some documentation on things like TextButton and TextLabel I found it increasingly hard to find the base class’s properties, functions, and events.
I do not seem to remember this being an issue before, TextButtons and TextLabels did include inherited properties/functions/events (gonna call it collectively “inherited properties” to save some typing time) from before, it may have been a new update that removed the inherited properties or I just never realized it.
This becomes increasingly hard for me as a developer to quickly and easily find a simple event name just because it doesn’t show inherited properties. Some beginner programmers may not even know how to properly find the base class’s information. Take TextLabel for example, it doesn’t include any on its inheritance other than “A TextLabel renders a rectangle, like a Frame, with styled text.” I’d then have to open up the Frame class where it finally states that the Frame is a GuiObject and its respective properties.
Sure, the Class Tree exists but it isn’t always the most feasible to try and find the inherited properties, especially if you’re in a rush and Ctrl + F doesn’t pop into your mind at the moment.
tl;dr Please bring back inherited properties to class pages as it will make everyone’s lives easier to find properties, functions, and events that are currently hidden from each page.