function LoadFromStream(const Src: TStream): Int64;
Save component to the .NET framework Stream.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Stream |
Returns: Int64
Examples
var b: Matrix;
AStream: TFileStream;
begin
b.SetIt(2,2,False,[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;
end;
end;