CRichEditCtx.StreamOutmethod
Causes a rich edit control to pass its contents to an application defined EditStreamCallback callback function.
Syntax
FUNCTION StreamOut (BYVAL psf AS LONG, BYREF edst AS EDITSTREAM) AS DWORD
Parameters
| Name | Description | |
|---|---|---|
psf | Specifies the data format and replacement options. This value must be one of the following values (see table below). | |
pedst | A EDITSTREAM structure. On input, the pfnCallback member of this structure must point to an application defined EditStreamCallback function. On output, the dwError member can contain a nonzero error code if an error occurred. |
Return value
This message returns the number of characters written to the data stream.
Description
Causes a rich edit control to pass its contents to an application defined EditStreamCallback callback function. The callback function can then write the stream of data to a file or any other location that it chooses.
Remarks
When you call the StreamOut method, the rich edit control makes repeated calls to the EditStreamCallback function specified by the pfnCallback member of the EDITSTREAM structure. Each time it calls the callback function, the control passes a buffer containing a portion of the contents of the control. This process continues until the control has passed all its contents to the callback function, or until an error occurs.
Reference
- Defined in AfxNova/CRichEditCtx.inc:3081
- Documented in Windows/WIndows Controls/RichEdit/CRichEditCtx Class.md
- Topic: CRichEditCtx Class