PowerTools SPREAD for ASP.NET 8.0J
GetExcelSheetNames(String,String) メソッド

Excelファイルのパスとファイル名
パスワード
指定したExcelファイルからシート名の配列を取得します。
構文
'Declaration
 
Public Overloads Shared Function GetExcelSheetNames( _
   ByVal fileName As String, _
   ByVal password As String _
) As String()
public static string[] GetExcelSheetNames( 
   string fileName,
   string password
)

パラメータ

fileName
Excelファイルのパスとファイル名
password
パスワード
次のサンプルコードは、GetExcelSheetNamesメソッドを使用します。
string[] sheetNames = null;
sheetNames = FarPoint.Web.Spread.FpSpread.GetExcelSheetNames("D:\\ALM.xls", "test");
int i;
for (i = 0; i <= sheetNames.Length - 1; i++)
{
    ListBox1.Items.Add(sheetNames[i]);
}
Dim sheetNames As String() = Nothing
sheetNames = FpSpread1.GetExcelSheetNames("D:\ALM.xls", "test")
Dim i As Integer
For i = 0 To sheetNames.Length - 1
    ListBox1.Items.Add(sheetNames(i))
Next 
参照

FpSpread クラス
FpSpread メンバ
オーバーロード一覧

 

 


© 2003-2015, GrapeCity inc. All rights reserved.