FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス > OpenExcel メソッド : OpenExcel(String,Boolean) メソッド |
'Declaration Public Overloads Function OpenExcel( _ ByVal fileName As String, _ ByVal isClearInputMapKey As Boolean _ ) As Boolean
'使用法 Dim instance As FpSpread Dim fileName As String Dim isClearInputMapKey As Boolean Dim value As Boolean value = instance.OpenExcel(fileName, isClearInputMapKey)
public bool OpenExcel( string fileName, bool isClearInputMapKey )
例外 | 説明 |
---|---|
System.IO.FileNotFoundException | 指定されたファイルが見つかりません。 |
System.ArgumentNullException | ファイル名が指定されていません(または指定されたファイル名がNull)。 |
System.ArgumentException | ファイル名が指定されていません(または指定されたファイル名が空)。 |
string f; f = "D:\\formula1.xls"; fpSpread1.OpenExcel(f, true);
Dim f As String f = "D:\formula1.xls" FpSpread1.OpenExcel(f, True)