CFRangeHeader: CFBase.h

A structure representing a range of sequential items in a container, such as characters in a buffer or elements in a collection.

struct CFRange {
    CFIndex location; 
    CFIndex length;
};

Field descriptions

location

An integer representing the starting location of the range.

length

An integer representing the number of items in the range.


© 1999 Apple Computer, Inc. — (Last Updated 9/15/99)