RoundedLine with GoStroke

Hi Support,

How do I enable the following GoStrokeStyles on a GoStroke?

Northwoods.Go.GoStrokeStyle.RoundedLine
Northwoods.Go.GoStrokeStyle.RoundedLineWithJumpOvers
Northwoods.Go.GoStrokeStyle.RoundedLineWithJumpGaps

This work Just Fine.
Northwoods.Go.GoStrokeStyle.Bezier
Northwoods.Go.GoStrokeStyle.Line


I see it work on GoLink but not on GoStroke.



Regards,
Thunis

The Documentation for GoStroke.RoundedLine says:

Rounded line is like Line but with curves at each point where the lines intersect.
Currently this is only implemented for adjacent segments that intersect at right angles.

this works for me:

  GoStroke s = new GoStroke();
  s.AddPoint(100, 100);
  s.AddPoint(200, 100);
  s.AddPoint(200, 200);
  s.AddPoint(300, 200);
  s.Style = GoStrokeStyle.RoundedLine;
  view.Document.Add(s);