Package: gtk

Function gtk-list-store-set-column-types

Lambda List

gtk-list-store-set-column-types (store &rest column-types)

Arguments

store -- a gtk-list-store object
column-types -- the g-type types of the columns

Details

This function is meant primarily for GObjects that inherit from the gtk-list-store class, and should only be used when constructing a new gtk-list-store object. It will not function after a row has been added, or a method on a gtk-tree-model object is called.

Example

Create a list store and set the column types:
(let ((store (gtk-list-store-new)))
  (gtk-list-store-set-column-types store "gint" "gchararray" "GdkPixbuf")
  ... )    
This is equivalent to:
(let ((store (gtk-list-store-new "gint" "gchararray" "GdkPixbuf")))
   ... )    
 

See also

2021-4-21