StreamPeriod - property of the PmgPipe object
Description:
Stream period (rate).
Syntax:
Double StreamPeriod
Values:
It is possible to enter the value -1, which means that the stream is stopped. The values 0.2, 0.4, 0.6, 0.8, 1.0 have the meaning of period of moving the stream pattern in seconds.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Period" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPipe = pMe.Items("/Pipe");
var nPeriod = oPipe.StreamPeriod;
// Reading from the property
oPipe.StreamPeriod = 0.4;
// Writing into the property
Dim oPipe
Set oPipe = pMe.Items("/Pipe")
Dim nPeriod
nPeriod = oPipe.StreamPeriod
' Reading from the property
oPipe.StreamPeriod = 0.4
' Writing into the property