
The default contructor for CurrentStatementSpanIndicator creates a span indicator with the wrong SpanIndicator Name.
For example:The SpanIndicator Name for csIndicator is "Breakpoint" not "Current statement".
This causes problems with breakpoints!
The work around is to use the other Contructor:
For example:
CurrentStatementSpanIndicator csIndicator = new CurrentStatementSpanIndicator();
This causes problems with breakpoints!
The work around is to use the other Contructor:
CurrentStatementSpanIndicator csIndicator = new CurrentStatementSpanIndicator(SpanIndicatorLayer.CurrentStatementKey, Color.Black, Color.FromArgb(255,255,238,98));