System.Classes.TWriter.WriteBoolean

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WriteBoolean(Value: Boolean);

C++

void __fastcall WriteBoolean(bool Value);

Properties

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

Description

Writes the value-type indicator, determined by the passed Boolean Value, to the writer object's stream.

WriteBoolean is used internally by the component streaming system to write boolean properties of components to the writer object's stream:

WriteBoolean advances the current position after the written value-type indicator.

See Also