# File lib_wpm/wpm.rb, line 1165
    def get_method_property(prop_value, context=@context)
      if (prop_value !~ /^[_A-Za-z][_A-Za-z0-9]*$/) then
        raise PropertyError, "invalid accessor format: #{prop_value.inspect}: at #{@widget_id.inspect}"
      end

      method = prop_value.intern

      proc{
        context.__send__(method)
        nil
      }
    end