Workbook
LoadFromStream Method (Stream, String, Int32, Int32)
 
 | 
 Loads text files stream with user defined separator.max row 60000.
 Namespace:
 Spire.Xls
 Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
 
public void LoadFromStream(
	Stream stream,
	string separator,
	int row,
	int column
)
 
Public Sub LoadFromStream ( 
	stream As Stream,
	separator As String,
	row As Integer,
	column As Integer
)
 
public:
void LoadFromStream(
	Stream^ stream, 
	String^ separator, 
	int row, 
	int column
)
 
member LoadFromStream : 
stream : Stream * 
separator : string * 
row : int * 
column : int -> unit 
 
 
 
Parameters
 
- 
stream
 
 
- 
 Type:
 
System.IO
Stream
 
 File stream.
 
- 
separator
 
 
- 
 Type:
 
System
String
 
 Delimiter of text file.
 
- 
row
 
 
- 
 Type:
 
System
Int32
 
 Start row.
 
- 
column
 
 
- 
 Type:
 
System
Int32
 
 Start column.
 
 
See Also