found this link:
this code doesn't seem to be working:
protected override void Initialize()
{
...
Add(new Line(Color.Blue, 10, "myLine"));
...
}
protected override void OnBarUpdate()
{
...
foreach (IDrawObject draw in DrawObjects)
{
if (draw.DrawType == DrawType.Line)
draw.Locked = false;
}
...
}
-e


Comment