Saves the data on the sheet to the specified XML file and the schema to the specified schema file.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim xmlFileName As String
Dim schemaFileName As String
Dim value As Boolean
value = instance.SaveXml(xmlFileName, 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.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.SaveXml("D:\\samples\\spread.xml", "D:\\samples\\spread.xsd"); |
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.SaveXml("D:\samples\spread.xml", "D:\samples\spread.xsd") |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also