How can I access UMG widget nested inside another widget?

I have a text widget I created that allows me to change the text it displays each time one is created. Now I have a button widget that this text sits on top of, so the text widget is nested within the button widget. I’m adding this button widget to a vertical box (which is currently working). How can I access the text widget within the button widget? When I try to cast it says that the text does not inherit from the button.

After I looked closer I found the names of the objects the parent widget has. If it already has those objects built inside it then you can access them. However if you see a “bind” next to the actual parameter you are trying to access you still have to bind a function using that process. Otherwise you can set the variables from drilling down into it.