The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
our $VERSION = '0.10' ;
has style => (
is => 'ro' ,
isa => 'Str' ,
);
has OnListBox => (
is => 'ro' ,
isa => 'Str' ,
);
has OnListDClick => (
is => 'ro' ,
isa => 'Str' ,
);
1;
|