[]
Gets an array of sheet names from the specified Excel file.
public static string[] GetExcelSheetNames(string fileName)
Public Shared Function GetExcelSheetNames(fileName As String) As String()
| Type | Name | Description |
|---|---|---|
| string | fileName | Path and filename of Excel file |
| Type | Description |
|---|---|
| string[] |
Gets an array of sheet names from the specified Excel file.
public static string[] GetExcelSheetNames(string fileName, string password)
Public Shared Function GetExcelSheetNames(fileName As String, password As String) As String()
| Type | Name | Description |
|---|---|---|
| string | fileName | Path and filename of Excel file |
| string | password | The password |
| Type | Description |
|---|---|
| string[] |
Gets an array of sheet names from the specified Excel file from a stream.
public static string[] GetExcelSheetNames(Stream stream)
Public Shared Function GetExcelSheetNames(stream As Stream) As String()
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream that contains an Excel Compound Storage file |
| Type | Description |
|---|---|
| string[] |
Gets an array of sheet names from the specified Excel file from a stream.
public static string[] GetExcelSheetNames(Stream stream, string password)
Public Shared Function GetExcelSheetNames(stream As Stream, password As String) As String()
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream that contains an Excel Compound Storage file |
| string | password | The password |
| Type | Description |
|---|---|
| string[] |