Set a number of flags to FALSE in a bit flag string.
cFlags := GT_NewFlag(20) // Create a bit flag string for 20
// logical values.
// Now, turn them all on.
cFlags := GT_SetFlag(cFlags,1,20)
// Now set flags 10 to 15 to false.
cFlags := GT_ClrFlag(cFlags,10,15)
// And set flag 18 to false.
cFlags := GT_ClrFlag(cFlags,18)
// And set flag 1 to false.
cFlags := GT_ClrFlag(cFlags)