Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / GetExcelSheetNames Method / GetExcelSheetNames(String) Method
Path and filename of Excel file
Example


In This Topic
    GetExcelSheetNames(String) Method
    In This Topic
    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.
    See Also