ODRecordRemoveValue(_:_:_:_:)
Removes a value from a record’s attribute.
Declaration
func ODRecordRemoveValue(_ record: ODRecordRef!, _ attribute: String!, _ value: CFTypeRef!, _ error: UnsafeMutablePointer<Unmanaged<CFError>?>!) -> BoolParameters
- record:
The record.
- attribute:
The attribute.
- value:
The value to remove.
- error:
An error reference for error details. Can be
NULL.
Return Value
true if inValue is successfully removed from inAttribute; otherwise, false.
Discussion
If inValue does not exist, true is returned and no error is set.
See Also
Working with Records
ODRecordAddMember(_:_:_:)ODRecordAddValue(_:_:_:_:)ODRecordChangePassword(_:_:_:_:)ODRecordContainsMember(_:_:_:)ODRecordCopyDetails(_:_:_:)ODRecordCopyValues(_:_:_:)ODRecordDelete(_:_:)ODRecordGetRecordName(_:)ODRecordGetRecordType(_:)ODRecordGetTypeID()ODRecordRemoveMember(_:_:_:)ODRecordSetNodeCredentials(_:_:_:_:)ODRecordSetNodeCredentialsExtended(_:_:_:_:_:_:_:)ODRecordSetValue(_:_:_:_:)ODRecordSynchronize(_:_:)