Help for this page

Select Code to Download


  1. or download this
    my $tags = [ "arc", "tall" ];
    ...
    $widget->configure(-tags => $tags);
    
  2. or download this
    $tags = [ "arc", "tall" ];
    build_widget($frame, $tags);
    ...
      ...
      $widget->configure(-tags => $tags);
    }