CFStringAppendCharacters

Header: CFString.h Carbon status: Supported

Appends a buffer of Unicode characters to the character contents of a mutable CFString object.

void CFStringAppendCharacters (
    CFMutableStringRef theString, 
    const UniChar *chars, 
    CFIndex numChars
);
Parameter descriptions
theString

A reference to a mutable CFString object to which the characters of the buffer chars are to be appended. If theString is not a mutable CFString object an assertion is raised.

chars

Pass a pointer to a local buffer of Unicode characters.

numChars

Pass an integer specifying the number of Unicode characters in the buffer chars.

AVAILABILITY

Supported in Carbon. Available in Carbon 1.0.2 and later.


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