Loads the specified XML data (for an entire Spread component) from a stream into a Spread component.
Syntax
Parameters
- spread
- Spreadsheet to which to load the XML stream
- stream
- Stream from which to load
Return Value
Boolean:
true if successful;
false otherwise
Example
This example uses the OpenXml method.
C# | Copy Code |
---|
System.IO.Stream stream;
stream = System.IO.File.Open("C:\\SpreadFiles\\file01.xml", System.IO.FileMode.Open);
FarPoint.Web.Spread.Model.SpreadSerializer.OpenXml(fpSpread1, stream); |
Visual Basic | Copy Code |
---|
Dim s As New FarPoint.Web.Spread.Model.SpreadSerializer
Dim stream As System.IO.Stream
stream = System.IO.File.Open("C:\SpreadFiles\file01.xml", System.IO.FileMode.Open)
s.OpenXml(FpSpread1, stream) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also