You are here: Symbol Reference > MtxVecBase Namespace > Classes > TMtxVecBase Class > public > TMtxVecBase.SaveToStream Method
MtxVec VCL
ContentsIndex
Example
var b: TVec; AStream: TFileStream; begin CreateIt(b); b.SetIt(False,[0,0,1,3,2]); AStream := TFileStream.Create('C:test.Vec',fmCreate); try b.SaveToStream(AStream); // Write info and header for b finally AStream.Free; end FreeIt(b); end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.