Property List Mutability FlagsHeader: CFPropertyList.h

Option flags that are passed to the function CFPropertyListCreateFromXMLData which determine the degree of mutibility for the newly created property list.

enum {
    kCFPropertyListImmutable = 0,
    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.


© 1999 Apple Computer, Inc. — (Last Updated 10/7/99)