Spread for ASP.NET 7.0 Product Documentation
OpenXml(FpSpread,String) Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > SpreadSerializer Class > OpenXml Method : OpenXml(FpSpread,String) Method


spread
Spreadsheet to which to load the XML file
fileName
Name of the XML file to load

Glossary Item Box

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

Syntax

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

Parameters

spread
Spreadsheet to which to load the XML file
fileName
Name of the XML file to load

Return Value

Boolean: true if successful; false otherwise

Example

This example uses the OpenXml method.
C#Copy Code
FarPoint.Web.Spread.Model.SpreadSerializer.OpenXml(fpSpread1, "C:\\SpreadFiles\\file01.xml");
Visual BasicCopy Code
Dim s As New FarPoint.Web.Spread.Model.SpreadSerializer
s.OpenXml(FpSpread1, "C:\SpreadFiles\file01.xml")

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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.