Spread ASP.NET 6.0 Product Documentation
OpenXml(FpSpread,Stream) Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > SpreadSerializer Class > OpenXml Method : OpenXml(FpSpread,Stream) Method


spread
Spreadsheet to which to load the XML stream
stream
Stream from which to load

Glossary Item Box

Loads the specified XML data (for an entire Spread component) from a stream into a Spread component.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function OpenXml( _
   ByVal spread As FpSpread, _
   ByVal stream As Stream _
) As Boolean
Visual Basic (Usage)Copy Code
Dim spread As FpSpread
Dim stream As Stream
Dim value As Boolean
 
value = SpreadSerializer.OpenXml(spread, stream)
C# 
public static bool OpenXml( 
   FpSpread spread,
   Stream stream
)

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 BasicCopy 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.