Help for this page

Select Code to Download


  1. or download this
        $valobj->value = undef;
    
  2. or download this
        $valobj->value = '';
    
  3. or download this
        sub value : lvalue {
            my $this = shift;
            $this->{VALUE};
        }
    
  4. or download this
        sub value {
            my ($self, $value) = @_;
    ...
            };
        };
        $valobj->value(undef);