StreamDirection - property of the PmgPipe object
Description:
Stream direction.
Syntax:
Long StreamDirection
Values:
0 - Stopped
1 - Streamed from the left
2 - Streamed from above
4 - Streamed from the right
8 - Streamed from below
Note:
Property access
for read and write.
The default value of this property is defined in the "
Direction" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPipe = pMe.Items("/Pipe");
var nDirection = oPipe.StreamDirection;
// Reading from the property
oPipe.StreamDirection = 1;
// Writing into the property
Dim oPipe
Set oPipe = pMe.Items("/Pipe")
Dim nDirection
nDirection = oPipe.StreamDirection
' Reading from the property
oPipe.StreamDirection = 1
' Writing into the property