You are here: Symbol Reference > MtxExpr Namespace > Classes > Vector Record > public > Vector.ReadValues Method
MtxVec VCL
ContentsIndex
Example
var b: Vector; 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;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.