Help for this page

Select Code to Download


  1. or download this
       .app.date.day configure -values {1 2 3 ... 28}
    
  2. or download this
       Tkx::.app.date.day_configure(-values => [1..28]);
    
  3. or download this
       &{"Tkx::.app.date.day_configure"}(-values => [1..28]);
    
  4. or download this
       my $day = $date->new_ttk__combox(
           -values => \@days,
    ...
       @days = (1 .. 28);
       $day->configure(-values => \@days);