[]
Creates a new NameNode from the specified string.
This constructor forwards null for the workbook, start worksheet,
and end worksheet information.
public NameNode(string name)
Public Sub New(name As String)
| Type | Name | Description |
|---|---|---|
| string | name | The short name. |
Creates a new NameNode from a range of sheets.
This constructor forwards null as the workbook reference to
NameNode(string, WorkbookReference, string, string).
public NameNode(string name, string worksheetName, string lastWorksheetName)
Public Sub New(name As String, worksheetName As String, lastWorksheetName As String)
| Type | Name | Description |
|---|---|---|
| string | name | The short name. |
| string | worksheetName | The name of start worksheet. |
| string | lastWorksheetName | The name of end worksheet. |
Creates a new NameNode from a range of sheets of the specified workbook.
public NameNode(string name, WorkbookReference workbook, string worksheetName, string lastWorksheetName)
Public Sub New(name As String, workbook As WorkbookReference, worksheetName As String, lastWorksheetName As String)
| Type | Name | Description |
|---|---|---|
| string | name | The short name. |
| WorkbookReference | workbook | The workbook id. |
| string | worksheetName | The name of start worksheet. |
| string | lastWorksheetName | The name of end worksheet. |