IBinaryWriter.WriteChar

Syntax

WriteChar(Value: Char);

Parameters

Value — character that must be written.

Description

The WriteChar method writes characters into a binary file.

Example

Executing the example requires the 1.dat binary file to be present in the root of the disc C.

Sub UserProc;
Var
    File1: IFileInfo;
    BinW: IBinaryWriter;
Begin
    File1:=New FileInfo.Attach("c:\1.dat");
    If File1.Exists Then
        BinW:=File1.OpenBinaryWriter(True);
        BinW.WriteChar('A');
    End If;
    Dispose File1;
End Sub UserProc;

After executing the example, letter A is written to the 1.dat binary file.

See also:

IBinaryWriter