Help for this page

Select Code to Download


  1. or download this
    my $slist = Gtk3::SimpleList->new (
                  'Text Field'    => 'text',
    ...
                  'Scalar Field'  => 'scalar',
                  'Pixbuf Field'  => 'pixbuf',
                );
    
  2. or download this
    # just displays the value in a scalar as 
    # Perl would convert it to a string
    ...
                 $cell->set (text => $sum);
            } 
       );