System.Classes.TWriter.WriteCurrency

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WriteCurrency(const Value: Currency);

C++

void __fastcall WriteCurrency(const System::Currency Value);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes TWriter

Description

Writes the specified Currency Value to the writer object's stream.

WriteCurrency is used internally by the component streaming system to write Currency properties of component to the writer object's stream.

WriteCurrency first calls WriteValue(vaCurrency) to write the vaCurrency type value-type indicator and then calls Write to write the passed Currency type Value.

WriteCurrency advances the current position after the last written byte.

See Also