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


fileName
Path and name of file to which to save
dataOnly
Whether to save data only

Glossary Item Box

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

Syntax

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

Parameters

fileName
Path and name of file to which to save
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)
        {
            fpSpread1.ActiveSheet.Save("c:\\controls\\test.xml", 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
        FpSpread1.ActiveSheet.Save("c:\controls\test.xml", 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.