var oTView = pMe.Items("../TrendView"); var oTrend = oTView.Trends(0); if (oTrend) { var nGraphs = oTrend.GraphsCount; if (nGraphs) { oTrend.RemoveGraph(nGraphs); } }
Dim oTView Set oTView = pMe.Items("../TrendView") Dim oTrend Set oTrend = oTView.Trends(0) If Not oTrend Is Nothing Then Dim nGraphs nGraphs = oTrend.GraphsCount If nGraphs Then oTrend.RemoveGraph nGraphs End If End If