Saves the data on the sheet to the specified XML file.
            
            
            
Syntax
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim xmlFileName As String
Dim value As Boolean
 
value = instance.SaveXml(xmlFileName)  | 
 
            Parameters
- xmlFileName
 
- Path and name of the XML file
 
            
            Return Value
Boolean: 
true if successful; 
false otherwise
 
            
						
            
            
            
            
Example
This example saves the raw data as XML to a file.
             
| C# |  Copy Code | 
|---|
fpSpread1.ActiveSheet.SaveXml("D:\\samples\\spread.xml") ; | 
 
| Visual Basic |  Copy Code | 
|---|
FpSpread1.ActiveSheet.SaveXml("D:\samples\spread.xml") | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also