String::Length
Defined in: C4String.h
Returns the length of a string.
Prototype
int32 Length(void) const;
Description
The Length function returns the length of the text contained in a String object. The contents of the String object must be defined so that the text is null-terminated. (The overloaded operators that manipulate the String object all maintain the null terminator.)
|