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 oAcx = pMe.Items("/Acx").Acx;
oAcx.GraphType = "linear";
oAcx.Draw();
Dim oAcx
Set oAcx = pMe.Items("/Acx").Acx
oAcx.GraphType = "linear"
oAcx.Draw