[]
A collection of DDSheet objects.
public class DDSheets : IEnumerable
| Name | Description |
|---|---|
| Count | Gets the number of elements contained in this DDSheets collection. |
| this[int] | Gets the DDSheet at the specified index. |
| this[string] | Gets the DDSheet with the specified name |
| Name | Description |
|---|---|
| AddNew() | Adds a new blank DDSheet object to the collection and returns a reference to it. |
| Clear() | Removes all the DDSheet objects contained in this collection. |
| GetEnumerator() | Returns an IEnumerator object for this collection, which you can use to enumerate the DDSheet contained in this collection. Allows foreach statements to be used with the collection. |
| Move(short, short) | Moves the sheet at the specified position to the specified new position. |
| Move(string, short) | Moves the sheet with the specified name to the specified position. |
| RemoveAt(int) | Removes the DDSheet at the specified index from this collection. |
| Select(int) | Selects the sheet at the specified index, and deselects all other sheets. |
| Select(string) | Selects the sheet with the specified name, and deselects all other sheets. |