Acx - property of the PmgActiveX object
Description:
Returns reference to the
ActiveX object that is referred to by this
Pmg object.
Over the object got by this property it is possible to call properties and methods of the ActiveX object.
Note:
Property access for
read only.
This property is not functional in Web panels
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oItemAx = pMe.Items("/Ax");
var oAx = oItemAx.Acx;
oAx.GraphType = "linear";
oAx.Draw();
Dim oItemAx
Set oItemAx = pMe.Items("/Ax")
Dim oAx
Set oAx = oItemAx.Acx
oAx.GraphType = "linear"
oAx.Draw