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