[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.ISheets.Item

this Property

this[int]

Gets the specified ISheet by the zero based index.

Declaration
ISheet this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As ISheet
Parameters
Type Name Description
int index

An integer value indicates the sheet index.

Property Value
Type Description
ISheet

The ISheet at the specified index.

this[string]

Gets the specified ISheet by the sheet name.

Declaration
ISheet this[string name] { get; }
ReadOnly Default Property Item(name As String) As ISheet
Parameters
Type Name Description
string name

A string value indicates the sheet name.

Property Value
Type Description
ISheet

The ISheet which has the specified name.

this[int[]]

Gets the specified ISheet objects by the zero based indexes.

Declaration
ISheets this[params int[] indexes] { get; }
ReadOnly Default Property Item(ParamArray indexes As Integer()) As ISheets
Parameters
Type Name Description
int[] indexes

An array of integer values indicates the sheet indexes.

Property Value
Type Description
ISheets

The ISheet objects at the specified indexes.

this[string[]]

Gets the specified ISheet objects by the sheet names.

Declaration
ISheets this[params string[] names] { get; }
ReadOnly Default Property Item(ParamArray names As String()) As ISheets
Parameters
Type Name Description
string[] names

An array of string values indicates the sheet names.

Property Value
Type Description
ISheets

The ISheet objects which has the specified names.