[]
Gets the DDSheet at the specified index.
public DDSheet this[int iIndex] { get; }
Type | Name | Description |
---|---|---|
int | iIndex |
Type | Description |
---|---|
DDSheet | A DDSheet object, at the specified index in this collection. |
In C#, this property is an indexer for the DDSheets class.
Gets the DDSheet with the specified name
public DDSheet this[string sheetName] { get; }
Type | Name | Description |
---|---|---|
string | sheetName |
Type | Description |
---|---|
DDSheet | A DDSheet object, with the specified name in this collection. |
In C#, this property is an indexer for the DDSheets class.
If a DDSheet with the specified name does not exist in the collection, null will be returned.
The sheetName argument is compared case insensitively.