# File lib_wpm/wpm.rb, line 2068
    def to_s
      string = @properties.value.to_s
      if (@properties.has_default? && string.empty?) then
        string = @properties.default.to_s
      end

      if (@properties.escape?) then
        string = escapeHTML(string)
      end

      string
    end