GetVarCount - method of the PmaCommMsg object
Syntax:
Long GetVarCount(Long nType)
Parameters:
nType | (Long) Specifies the tab for which the number of variables is returned.
|
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oCommMsg = pMe.Pm("/CommMsg");
var nVarsSnd = oCommMsg.GetVarCount(1);
Dim oCommMsg
Set oCommMsg = pMe.Pm("/CommMsg")
Dim nVarsSnd
nVarsSnd = oCommMsg.GetVarCount(1)