# File lib_wpm/wpm.rb, line 1485
    def expand_string(key)
      if (@string_map.include? key) then
        properties = @string_map[key]
        widget = properties.create_widget
        return widget.to_s
      end

      raise "not found a string widget of #{key.inspect}"
    end