# File lib_wpm/wpm.rb, line 3431
    def view
      make_attr_desc{|attr_desc|
        attr_desc += ' name="' + escapeHTML((@properties.has_name?) ? @properties.name : action_id) + '"'
        attr_desc += ' type="hidden"'
        attr_desc += ' value="' + escapeHTML(@properties.value || '') + '"'
        yield('<input' + attr_desc + ' />')
      }

      nil
    end