TAbstractMtxVecInt.LoadFromStream Method

Int64 LoadFromStream(Stream SrcStream)

Load the list from a stream.

#NameTypeDescription
1SrcStreamStream

Returns: Int64

Examples
Vector b;
TFileStream AStream;
b.SetIt(false,new double[] {0,0,1,3,2});
AStream = TFileStream.Create(@"C:\test.Vec",fmCreate);
try
    {
        b.LoadFromStream(AStream); // Read info and header for b
    }
finally
    {
        AStream.Free;
    }