# File lib/ole/types/property_set.rb, line 132
      def []= key, value
        pair = PROPERTY_MAP[key.to_s] or return nil
        section = @sections.find { |s| s.guid == pair.first } or return nil
        section[pair.last] = value
      end