Package: gtk
Function gtk:table-attach
Lambda Listgtk:table-attach (table child left right top bottom &key xoptions yoptions
xpadding ypadding) ArgumentsDetails
Adds a child widget to a table.
The number of cells that a child widget will occupy is specified by the arguments left, right, top and bottom. These each
represent the leftmost, rightmost, uppermost and lowest column and row
numbers of the table. Columns and rows are indexed from zero. The xoptions and yoptions keyword arguments have the default value '(:expand :fill). The xpadding and ypadding keyword arguments have the default value 0. Examples(gtk:table-attach table button 1 2 1 2)If you want to make the button span the entire bottom row, use (gtk:table-attach table button 0 2 1 2) Lisp implementationWarning | See also |
2024-6-27