[]
Creates a new XLSheet and appends it to the collection.
public XLSheet Add()
Public Function Add() As XLSheet
| Type | Description |
|---|---|
| XLSheet | A reference to the new XLSheet object. |
Appends an existing XLSheet to the collection.
public XLSheet Add(XLSheet sheet)
Public Function Add(sheet As XLSheet) As XLSheet
| Type | Name | Description |
|---|---|---|
| XLSheet | sheet | The object to add to the collection. |
| Type | Description |
|---|---|
| XLSheet | A reference to the object that was added to the collection
(in this case, always the |
Creates a new XLSheet with a given name and appends it to the collection.
public XLSheet Add(string name)
Public Function Add(name As String) As XLSheet
| Type | Name | Description |
|---|---|---|
| string | name | The name of the new XLSheet. |
| Type | Description |
|---|---|
| XLSheet | A reference to the new XLSheet object. |