Method GTK1.Box()->set_child_packing()
- Method set_child_packing
GTK1.Box
set_child_packing(GTK1.Widget
child_widget
,int
expandp
,int
fillp
,int
padding
,int
pack_type
)- Description
widget, expand, fill, padding, pack_type. If exand is true, the widget will be expanded when the box is resized. If 'fill' is true, the widget will be resized to fill up all available space. Padding is the amount of padding to use, and pack_type is one of PACK_END, PACK_EXPAND and PACK_START.
You can emulate pack_start and pack_end with add and set_child_packing.