rangeIndicator = new ScintillaNET.Range(start, start + tokenString.Length, scintilla);
rangeIndicator.SetIndicator((int)ScintillaNET.IndicatorStyle.Squiggle);
I have this set up, which gives a blue squiggly line in the given range. Is there an easy way to make that red, I've tried both setting the fore and background style with no avail. Is there anything that can be done without going into the native scintilla?I believe that I'm looking for the equivalent of
SCI_INDICSETFORE(int indicatorNumber, int colour)