# File lib/cgikit/displaygroup.rb, line 361
    def delete_at( index )
      object = @objects[index]
      if @data_source then
        @data_source.delete(object)
      else
        @objects.delete(object)
      end
    end