* the value of the color. This color value comes from the defines in the file COLORID.H that begin with NOTES_COLOR_xxx
*/
public NOTES_COLOR getColor() {
if (getFlags().contains(Flag.HAS_COLOR)) {
short color = getData().getShort(getData().position() + FONTID.SIZE + 4);
return new NOTES_COLOR(color);
}
return null;
}