Saves the contents of the sheet view to the specified file.
Syntax
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) |
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.NET | Copy 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