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


stream
The stream to save sheet view as XML
dataOnly
Whether to save data only

Glossary Item Box

Saves the contents of the sheet view to the specified stream.

Syntax

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

Parameters

stream
The stream to save sheet view as XML
dataOnly
Whether to save data only

Example

This example uses the Save method.
C#Copy Code
private void Form1_Load(object sender, EventArgs e)
        {            
            
            fpSpread1.ActiveSheet.RowHeader.Cells[0, 0].Text = "Branch #";
            fpSpread1.ActiveSheet.Cells[0, 0].Text = "North";
        }               

        private void button1_Click(object sender, EventArgs e)
        {
            string fileName;
            fileName = "c:\\controls\\test.xml";
            System.IO.Stream stream;
            stream = System.IO.File.Create(fileName);            
            fpSpread1.ActiveSheet.Save(stream, false);       
        }
VB.NETCopy Code
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        FpSpread1.ActiveSheet.RowHeader.Cells(0, 0).Text = "Branch #"
        FpSpread1.ActiveSheet.Cells(0, 0).Text = "North"
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim fileName As String
        fileName = "c:\controls\test.xml"
        Dim stream As System.IO.Stream
        stream = System.IO.File.Create(fileName)
        FpSpread1.ActiveSheet.Save(stream, False)
    End Sub

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.