Link Search Menu Expand Document

SSpread.SaveToBuffer Method

Explanation Saves all the information in the spreadsheet in binary format in ByteArray.

Binary data is in SSpread's own format. It can be loaded using the LoadFromBuffer method.
Added since Ver.5.0.3
Call format var data = SaveToBuffer()
Return value ByteArray object that stores sheet information
Arguments None
Exception EXT-28 Error in SaveToBuffer method
Example of use
    var data = Spread1.SaveToBuffer();
    Spread2.LoadFromBuffer(data);
    
Related item LoadFromBuffer method