'Declaration
Public Overloads Function IsExcelStream( _
ByVal As Stream _
) As Boolean
'使用法
Dim instance As FpSpread
Dim stream As Stream
Dim value As Boolean
value = instance.IsExcelStream(stream)
パラメータ
- stream
- ストリーム
戻り値の型
Boolean:指定したファイルがExcelストリームの場合はTrue、それ以外の場合はFalse
次のサンプルコードは、条件が満たされている場合にExcelファイルを開きます。
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