Visible - vlastnost objektu tvGraph
Popis:
Viditelnost oblasti průběhu trendu.
Hodnoty:
true - Oblast je viditelná
false - Oblast je neviditelná
Příklad:
JavaScriptVBScriptVyber a zkopíruj do schránky
var oTView = pMe.Items("../TrendView");
var oGraphDef = oTView.Trends("t1").GraphDefault;
var bVisible = oGraphDef.Visible; //čtení
oGraphDef.Visible = true; //zápis
oTView.Draw();
Dim oTView, oGraphDef, bVisible
Set oTView = pMe.Items("../TrendView")
Set oGraphDef = oTView.Trends("t1").GraphDefault
bVisible = oGraphDef.Visible 'čtení
oGraphDef.Visible = true 'zápis
oTView.Draw