I'm using Cell.GetCharacters() to read rich-text formatting from Excel cells. I've discovered a limitation, which is that the Cell.GetCharacters() returns null if the entire cell contains a uniform formatting (for example, the text is all bold, red). I know that I can get the formatting information in this case from the Cell, but that requires coding separately for this special case - all other cases use logic that reads the ArrayList returned by Cell.GetCharacters().
Is it possible for you to modify GetCharacters() so that it returns an ArrayList with only one item, a Characters object, in the case of uniform cell formatting?
Thanks!