Spread Windows Forms 7.0 Product Documentation
SaveXml(Stream) Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > SaveXml Method : SaveXml(Stream) Method


xmlStream
XML stream

Glossary Item Box

Saves the data on the sheet to the specified XML stream.

Syntax

Visual Basic (Declaration) 
Public Overloads Function SaveXml( _
   ByVal xmlStream As Stream _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim xmlStream As Stream
Dim value As Boolean
 
value = instance.SaveXml(xmlStream)
C# 
public bool SaveXml( 
   Stream xmlStream
)

Parameters

xmlStream
XML stream

Return Value

Boolean: true if successful; false otherwise

Example

This example saves the data as XML to a stream.
C#Copy Code
string f; 
f = "D:\\samples\\spread.xml"; 
System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.CreateNew, IO.FileAccess.ReadWrite); 
fpSpread1.ActiveSheet.SaveXml(s); 
s.Close();
Visual BasicCopy Code
Dim f As String
f = "D:\samples\spread.xml"
Dim s As New System.IO.FileStream(f, IO.FileMode.CreateNew, IO.FileAccess.ReadWrite)
FpSpread1.ActiveSheet.SaveXml(s)
s.Close()

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

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