[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.IWorksheets.Item

this Property

this[int]

Gets the specified IWorksheet by the zero based index.

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

An integer value indicates the worksheet index.

Property Value
Type Description
IWorksheet

The IWorksheet at the specified index.

this[string]

Gets the specified IWorksheet by the worksheet name.

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

A string value indicates the worksheet name.

Property Value
Type Description
IWorksheet

The IWorksheet which has the specified name.

this[int[]]

Gets the specified IWorksheet objects by the zero based indexes.

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

An array of integer values indicates the worksheet indexes.

Property Value
Type Description
IWorksheets

The IWorksheet objects at the specified indexes.

this[string[]]

Gets the specified IWorksheet objects by the worksheet names.

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

An array of string values indicates the worksheet names.

Property Value
Type Description
IWorksheets

The IWorksheet objects which has the specified names.