0

If I use this expression Scene.Find().Find(), it gets me the first line object contained in the plotcube. In otherwise I can loop through the objects contained in the plotcube and find each lineplot?

David
  • 61
  • 2

1 Answers1

1

do you mean ... ?

foreach (var lineplot in scene.Find<ILLinePlot>()) {
    // do with lineplot here 
}