Matrix.ReadHeader Method

function ReadHeader(const Src: TStream): TPrecision;

Reads the header information from a stream to object.

#NameTypeDescription
1SrcStream

Returns: TPrecision

Remarks:

Reads the header information from a DstStream stream to calling object. The header information contains all necessary information defining the object. The function returns the precision in which the data was stored. This information is required for the Matrix.ReadValues method.

Examples
var b: Matrix;
AStream: TFileStream;
Precision: TPrecision;
begin
    AStream := TFileStream.Create('C:\test.bin',fmOpenRead);
    try
        Precision := b.ReadHeader(AStream); // Read info for b
        b.ReadValues(AStream,Precision); // Read values of b
    finally
        AStream.Free;
    end;
end;