SecureBlackbox

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

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


TElFileObject.Write

TElFileObject     See also    


 

Writes binary data to the file.

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Function IElFileObjectX.Write(Buffer As Variant, FilePos As Long) As Long

[ActiveX]
    HRESULT _stdcall IElFileObjectX.Write([in] VARIANT Buffer, [in] long FilePos, [out, retval] long * Written );

[C++]
    not implemented;

   

Parameters

  • Buffer - the data that should be written to file
  • FilePos - position from which the data should be written
   

Return value

    The number of the bytes that were written.

   

Description

    Use this method to write the data to the opened file.

   

See also:     Close     Open     Read    

 
Back to top