Package: gtk

Function gtk-tree-store-new

Lambda List

gtk-tree-store-new (&rest column-types)

Arguments

column-types -- all g-type types for the columns, from first to last

Return Value

A new gtk-tree-store object.

Details

Creates a new tree store as with columns of the types passed in. Note that only types derived from standard GType fundamental types are supported.

Example

The following example creates a new gtk-tree-store object with three columns, of type "gint", "gchararray", and "GdkPixbuf" respectively.
(gtk-tree-store-new "gint" "gchararray" "GdkPixbuf")    
 

See also

2021-3-3