MaxSize - property of the PmaSequencer object
Description:
The maximum number of items that can wait in the PmaSequencer object at a time.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Maximum number of items" configurator of this object.
The -1 value represents unlimited number of items. The limitation is suitable to prevent designer's errors when the number of waiting items could increase over all limits.
The value of this property can be also obtained in the "
PmaRoot" item of the INFO system (when looking into the object with this property).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oSequencer = pMe.Pm("/Sequencer");
var nMaxSize = oSequencer.MaxSize;
Dim oSequencer
Set oSequencer = pMe.Pm("/Sequencer")
Dim nMaxSize
nMaxSize = oSequencer.MaxSize