NAME

Tie::Wx::Widget - a simpler way to get and set the Value of a Widget

VERSION

Version 0.01

SYNOPSIS

    use Tie::Wx::Widget;

    tie $tiedwidget, Tie::Wx::Widget, $widgetref;
    
    # instead of say $widgetref->GetValue;
    say  $tiedwidget;

    # instead of $widgetref->SetValue('7');
	$tiedwidget = 7;

    untie $tiedwidget;

RATIONALE

AUTHOR

Herbert Breunung, <lichtkind at cpan.org>

BUGS

Please report any bugs or feature requests to bug-tie-wx-widget at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Tie-Wx-Widget. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Tie::Wx::Widget

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2011 Herbert Breunung.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.