Spread Windows Forms 10.0 Product Documentation
SaveXml(String,String) Method
Example 


Path and name of XML file
Path and name of schema file
Saves the data on the sheet to the specified XML file and the schema to the specified schema file.
Syntax
'Declaration
 
Public Overloads Function SaveXml( _
   ByVal xmlFileName As String, _
   ByVal schemaFileName As String _
) As Boolean
'Usage
 
Dim instance As SheetView
Dim xmlFileName As String
Dim schemaFileName As String
Dim value As Boolean
 
value = instance.SaveXml(xmlFileName, schemaFileName)
public bool SaveXml( 
   string xmlFileName,
   string schemaFileName
)

Parameters

xmlFileName
Path and name of XML file
schemaFileName
Path and name of schema file

Return Value

Boolean: true if successful; false otherwise
Example
This example saves the raw data as XML to a file and its associated schema to a file.
fpSpread1.ActiveSheet.SaveXml("D:\\samples\\spread.xml", "D:\\samples\\spread.xsd");
FpSpread1.ActiveSheet.SaveXml("D:\samples\spread.xml", "D:\samples\spread.xsd")
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.