System.Classes.TTextReader.ReadBlock
Delphi
function ReadBlock(var Buffer: TCharArray; Index, Count: Integer): Integer; virtual; abstract;
C++
virtual int __fastcall ReadBlock(System::DynamicArray<System::WideChar> &Buffer, int Index, int Count) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Classes.pas System.Classes.hpp |
System.Classes | TTextReader |
Description
Read block of characters.
ReadBlock reads a block of at most Count characters to Buffer, starting at Index.
This method is functionally identical to the Microsoft .NET method TextReader.ReadBlock.
See Also
Code Examples