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