CFPropertyListMutabilityOptions

Header: CFPropertyList.h

enum CFPropertyListMutabilityOptions {
    kCFPropertyListImmutable = ,
    kCFPropertyListMutableContainers = 1,
    kCFPropertyListMutableContainersAndLeaves = 2
};

Constant descriptions

kCFPropertyListImmutable

Causes the returned property list to be immutable.

kCFPropertyListMutableContainers

Causes the property list to be created with mutable containers but immutable leaves.

kCFPropertyListMutableContainersAndLeaves

Causes the property list to be created with mutable containers as well as mutable leaves.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)