Method: CDK::CDKOBJS#unbind

Defined in:
lib/cdk/cdk_objs.rb

#unbind(type, key) ⇒ Object



330
331
332
333
334
335
# File 'lib/cdk/cdk_objs.rb', line 330

def unbind(type, key)
  obj = self.bindableObject(type)
  unless obj.nil?
    obj.binding_list.delete(key)
  end
end