SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  ActiveX  C++ 


TElFileObject.Read

TElFileObject     See also    


 

Reads binary data from the file.

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Function IElFileObjectX.Read(Position As Long, Count As Long) As Variant

[ActiveX]
    HRESULT _stdcall IElFileObjectX.Read([in] long Position, [in] long Count, [out, retval] VARIANT * Result );

[C++]
    not implemented;

   

Parameters

  • Buffer - buffer that contains read data
  • FilePos - position from which the file is read
   

Description

    Use this method to read the data from the opened file.

   

See also:     Close     Open     Write    

 
Back to top