You are here: Symbol Reference > MtxExprInt Namespace > Classes > MatrixInt Record > public > MatrixInt.ReadHeader Method
MtxVec VCL
ContentsIndex
PreviousUpNext
MatrixInt.ReadHeader Method

Reads the header information from a stream to object.

Pascal
function ReadHeader(const SrcStream: TStream): TPrecision; overload;

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 ReadValues method.

var b: TMtxInt; AStream: TFileStream; Precision: TPrecision; begin CreateIt(b); 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; FreeIt(b); end; end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!