Specifications

Chapter 24294
int GetNoteLength()
Description
Gets the length of the value associated with the specified key.
Arguments
FileHandle noteHandle, const char keyName[64]
The first argument is the file handle that OpenNotesFile() returns.
The second argument is a string that contains the name of the key.
Returns
An integer that represents the length of the value.
Example
See BOOL GetNote() on page 293.
int GetNotesKeyCount()
Description
Gets the number of key/value pairs in the specified Design Notes file.
Arguments
FileHandle noteHandle
The argument is the file handle that OpenNotesFile() returns.
Returns
An integer that represents the number of key/value pairs in the Design Notes file.
BOOL GetNotesKeys()
Description
Gets a list of all the keys in a Design Notes file.
Arguments
FileHandle noteHandle, char* keyBufArray[64], int keyArrayMaxLen
The first argument is the file handle that OpenNotesFile() returns.
The second argument is the buffer array where the keys should be stored.
The third argument is the integer that GetNotesKeyCount(noteHandle) returns, indicating
the maximum number of items in the key buffer array.
Returns
A Boolean value that indicates whether the operation is successful; stores the key names in
keyBufArray.