Help for this page

Select Code to Download


  1. or download this
    sub Populate{
    ...
    ...
      $self->{ _configX } = [];
    ...
    }
    
  2. or download this
    process( $dlg->{ _configX } );
    
  3. or download this
    sub Populate{
    ...
    ...
        -configx => [ qw/PASSIVE configx CONFIGX] );
    ...
    }
    
  4. or download this
    $config = [];
    $dlg->configure( -configx => $config );
    process( $dlg->cget( "-configx" ) );
    
  5. or download this
    sub Populate{
    ...
    ...
      # get configX on configure;
      # return configX on cget;
    }
    
  6. or download this
    $config = [];
    $dlg->configure( -configx => $config );
    process( $dlg->cget( "-configx" ) );