Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この単純な操作を機能させる方法を理解するのに苦労しています。
LineItem Curve = Pane.AddCurve(Name,Data,Color.blue,SymbolType.Diamond); zgc.Refresh();
追加したばかりの曲線を削除するにはどうすればよいですか?
Pane.CurveList.Remove()?' もしそうなら、Remove() メソッドのパラメータとして使用する既存の曲線に等しいオブジェクトを設定するにはどうすればよいですか?
作成した曲線への参照を渡します。
Pane.CurveList.Remove(Curve);
ドキュメントはこちらから入手できます。
未検証ですが…
Pane.CurveList[ Pane.CurveList.Count - 1 ].Clear(); zgc.Refresh();