Spread for ASP.NET 8.0 Product Documentation
GetExcelSheetNames(String) Method
Example 


Path and filename of Excel file
Gets an array of sheet names from the specified Excel file.
Syntax
'Declaration
 
Public Overloads Shared Function GetExcelSheetNames( _
   ByVal fileName As String _
) As String()
'Usage
 
Dim fileName As String
Dim value() As String
 
value = FpSpread.GetExcelSheetNames(fileName)
public static string[] GetExcelSheetNames( 
   string fileName
)

Parameters

fileName
Path and filename of Excel file

Return Value

String array with names of the sheets in the Excel file
Example
This example gets the names of the individual spreadsheets in a workbook of the specified Excel file.
string[] sheetNames = null;
sheetNames = FarPoint.Web.Spread.FpSpread.GetExcelSheetNames("D:\\ALM.xls");
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")
Dim i As Integer
For i = 0 To sheetNames.Length - 1
    ListBox1.Items.Add(sheetNames(i))
Next 
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

FpSpread Class
FpSpread Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.