Package: gtk
Function gtk-list-store-set
Lambda Listgtk-list-store-set (store iter &rest values) ArgumentsReturn ValueThe gtk-tree-iter iterator for the row being modified. Details Sets the values of one or more cells in the row referenced by iter.
The variable argument list should contain the values to be set. Example(let ((model (gtk-list-store-new "gchararray" "gchararray" "guint"))) ;; Append a row and fill in some data (gtk-list-store-set model (gtk-list-store-append model) "Hans" "Müller" 1961) ... ) Note | See also |
2021-4-21