RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TConversion.ConvertReadStream Method

Reads BufSize bytes from Stream into the memory buffer pointed to by Buffer.

Pascal
function ConvertReadStream(Stream: TStream; Buffer: PChar; BufSize: Integer): Integer; virtual;
C++
virtual __fastcall int ConvertReadStream(TStream Stream, const char * Buffer, int BufSize);

To convert text between two formats, override this method in a descendant class and convert the text in the buffer. To create a descendant class that TCustomRichEdit can use, convert the text to RTF format.

Note: ConvertReadStream should reverse the conversion that ConvertWriteStream makes.
 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!