[]
Gets the specified IWorksheet by the zero based index.
IWorksheet this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As IWorksheet
Type | Name | Description |
---|---|---|
int | index | An integer value indicates the worksheet index. |
Type | Description |
---|---|
IWorksheet | The IWorksheet at the specified index. |
Gets the specified IWorksheet by the worksheet name.
IWorksheet this[string name] { get; }
ReadOnly Default Property Item(name As String) As IWorksheet
Type | Name | Description |
---|---|---|
string | name | A string value indicates the worksheet name. |
Type | Description |
---|---|
IWorksheet | The IWorksheet which has the specified name. |
Gets the specified IWorksheet objects by the zero based indexes.
IWorksheets this[params int[] indexes] { get; }
ReadOnly Default Property Item(ParamArray indexes As Integer()) As IWorksheets
Type | Name | Description |
---|---|---|
int[] | indexes | An array of integer values indicates the worksheet indexes. |
Type | Description |
---|---|
IWorksheets | The IWorksheet objects at the specified indexes. |
Gets the specified IWorksheet objects by the worksheet names.
IWorksheets this[params string[] names] { get; }
ReadOnly Default Property Item(ParamArray names As String()) As IWorksheets
Type | Name | Description |
---|---|---|
string[] | names | An array of string values indicates the worksheet names. |
Type | Description |
---|---|
IWorksheets | The IWorksheet objects which has the specified names. |