Spread Silverlight Documentation
SaveCSV(Int32,Stream,TextFileSaveFlags) Method
Example 


The destination sheet index for saving.
Stream to which to save the content.
The export flags.
Saves the CSV (comma-separated values) file.
Syntax
'Declaration
 
Public Overloads Sub SaveCSV( _
   ByVal sheetIndex As System.Integer, _
   ByVal stream As System.IO.Stream, _
   ByVal flags As TextFileSaveFlags _
) 
'Usage
 
Dim instance As GcSpreadSheet
Dim sheetIndex As System.Integer
Dim stream As System.IO.Stream
Dim flags As TextFileSaveFlags
 
instance.SaveCSV(sheetIndex, stream, flags)
public void SaveCSV( 
   System.int sheetIndex,
   System.IO.Stream stream,
   TextFileSaveFlags flags
)

Parameters

sheetIndex
The destination sheet index for saving.
stream
Stream to which to save the content.
flags
The export flags.
Example
This example uses the SaveCSV method.
SaveFileDialog saveFileDialog = new SaveFileDialog();
            saveFileDialog.Filter = "csv File (.csv)|*.csv";
            bool? useClick = saveFileDialog.ShowDialog();
            if (useClick == true)
            {
                var stream = saveFileDialog.OpenFile();
                gcSpreadSheet1.SaveCSV(0, stream, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed);
                //gcSpreadSheet1.SaveCSV(0, stream, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed, System.Text.Encoding.UTF8);           
                stream.Dispose();
            }
Dim saveFileDialog = New SaveFileDialog()
        saveFileDialog.Filter = "csv File(.csv)|*.csv"
        Dim useClick As Boolean = saveFileDialog.ShowDialog()
        If (useClick = True) Then
            Dim stream = saveFileDialog.OpenFile()
            GcSpreadSheet1.SaveCSV(0, stream, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed)
            'GcSpreadSheet1.SaveCSV(0, stream, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed, System.Text.Encoding.UTF8)
        End If
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.