[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
TStream descendent which wraps the write end of a pipe.
Source position: pipes.pp line 52
| type TOutputPipeStream = class(THandleStream) | ||
| public | ||
| destructor Destroy; override; | 
 | Destroy this instance of the output pipe stream. | 
| function Seek(); override; | 
 | Sets the position in the stream. | 
| function Read(); override; | 
 | Read data from the stream. | 
| property DontClose: Boolean; [rw] | ||
| end; | 
| 
 | TStream descendent which wraps the write end of a pipe. | |
| | | ||
| | | ||
| | | ||
TOutputPipeStream is created by the CreatePipeStreams call to represent the writing end of a pipe. It is a TStream descendent which does not allow reading.
| 
 | Create a pair of pipe stream. | |
| 
 | TStream descendent which wraps the read end of a pipe. |