TStaticSpectrumAnalyzerList.SaveToStream Method

procedure SaveToStream(Dst: TStream);

Save the component to Dst stream.

#NameTypeDescription
1DstStream

Result: stored in self (calling object)

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.SaveToStream(AStream); // Write info and header for b
    finally
        AStream.Free;
    end
end;