System.Classes.TTextReader.ReadBlock

From RAD Studio API Documentation
Revision as of 10:36, 10 February 2014 by AChavesBot (talk | contribs) (47307.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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