Vcl.AxCtrls.TOleStream.Write

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Write(const Buffer; Count: Longint): Longint; override;

C++

virtual int __fastcall Write(const void *Buffer, int Count)/* overload */;
inline int __fastcall  Write(const System::DynamicArray<System::Byte> Buffer, int Offset, int Count){ return System::Classes::TStream::Write(Buffer, Offset, Count); }
inline int __fastcall  Write(const System::DynamicArray<System::Byte> Buffer, int Count){ return System::Classes::TStream::Write(Buffer, Count); }

Properties

Type Visibility Source Unit Parent
function public
Vcl.AxCtrls.pas
Vcl.AxCtrls.hpp
Vcl.AxCtrls TOleStream

Description

Writes Count bytes from Buffer to the current position in the Ole stream and updates the current position by Count bytes.

Use Write to write Count bytes to the Ole stream, starting at the current position. Write uses the stream interface to transfer the information from Buffer.

All the other data-writing methods of an Ole stream (WriteBuffer, WriteComponent) call Write to do their actual writing.

See Also