Spread Windows Forms 12.0 Product Documentation
GetExcelSheetNames(String,String) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class > GetExcelSheetNames Method : GetExcelSheetNames(String,String) Method
Path and name of file
Password of file
Gets an array of sheet names from the specified Excel-compatible file.
Syntax
'Declaration
 
Public Overloads Shared Function GetExcelSheetNames( _
   ByVal fileName As String, _
   ByVal password As String _
) As String()
'Usage
 
Dim fileName As String
Dim password As String
Dim value() As String
 
value = FpSpread.GetExcelSheetNames(fileName, password)
public static string[] GetExcelSheetNames( 
   string fileName,
   string password
)

Parameters

fileName
Path and name of file
password
Password of file
Exceptions
ExceptionDescription
Specified file is not found
No file name is specified (or specified file name is null)
No file name is specified (or specified file name is empty)
Example
This example uses the GetExcelSheetNames method.
String[] sheetNames = FarPoint.Win.Spread.FpSpread.GetExcelSheetNames("c:\\Book1.xlsx", "Test");
            int i;            
            for (i = 0; i < sheetNames.Length; i++)
                {
            listBox1.Items.Add(sheetNames[i].ToString());
        }
Dim sheetNames As String() = FarPoint.Win.Spread.FpSpread.GetExcelSheetNames("c:\Book1.xlsx", "Test")
        Dim i As Integer
        For i = 0 To sheetNames.Length - 1
            ListBox1.Items.Add(sheetNames(i).ToString())
        Next
See Also

Reference

FpSpread Class
FpSpread Members
Overload List