procedure LoadFromFile(FileName: string);
Load the object from the file.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | FileName | string |
Result: stored in self (calling object)
Examples
var b: Matrix;
begin
b.LoadFromFile('c:\test.Vec'); // Read header and values for b
end;