Access: Read OnlyType: GtkWidget
The widget property provides access to the child widget object.
It is possible to access methods, properties and signals belonging to widget as with any GtkWidget of the same type.
<?php $button = $vbox->children[5]->widget; $label = $button->child; $label->set_text("New Button Label"); ?>