Spread Silverlight Documentation > Developer's Guide > Managing Data > Opening and Saving Text Files |
You can load or save text files. You can specify the open or save flags as well as the column, row, and cell delimiters. You can also specify the encoding.
You can use the OpenTextFile method to load text files and the SaveTextFileRange method to save text files.
The following example opens a text file.
CS |
Copy Code
|
---|---|
OpenFileDialog openFileDialog = new OpenFileDialog(); stream.Dispose(); |
VB.NET |
Copy Code
|
---|---|
Dim openFileDialog = New OpenFileDialog() End If |