Parameters
- stream
- Stream
Return Value
Boolean: true if it is an Excel stream; false otherwise
string f; f = "D:\\pic.xls"; System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite); bool b = fpSpread1.IsExcelStream(s); if (b == true) { fpSpread1.OpenExcel(s); }
Dim f As String f = "D:\pic.xls" Dim s As New System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite) Dim b As Boolean = FpSpread1.IsExcelStream(s) If b = True Then FpSpread1.OpenExcel(s) End If