Which chars have charAttr_XA? Any pointers please?
#define charAttr_XA 0x0200 // extra alphabetic
The simple answer is all of the characters for which TxtCharAttr returns a result with bit 0x0200 set. In other words, you shouldn't be relying any static set of characters having this attribute, as that set can change over time, and will change depending on the character encoding and even the locale.
But a small sampling of what's currently defined includes:
For PalmLatin, all of the high ASCII alphabetics that are a-z + accent.
For Shift-JIS, all of the Kanji characters.
For GB, all of the Hanzi characters.
-- Ken -- Ken Krugler
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
