[]
Creates a new TableItemNode from a column of a table.
public TableItemNode(string tableName, TableItemType itemType, string columnName)
Public Sub New(tableName As String, itemType As TableItemType, columnName As String)
Type | Name | Description |
---|---|---|
string | tableName | The name of the table. |
TableItemType | itemType | The part of the table. |
string | columnName | The column of the table. |
Creates a new TableItemNode from range of columns of a table.
public TableItemNode(string tableName, TableItemType itemType, string columnFrom, string columnTo)
Public Sub New(tableName As String, itemType As TableItemType, columnFrom As String, columnTo As String)
Type | Name | Description |
---|---|---|
string | tableName | The name of the table. |
TableItemType | itemType | The part of the table. |
string | columnFrom | The start column. |
string | columnTo | The end column. |