[]
Creates a new expression representing a table reference expression.
public TableReferenceExpression(object tableData, StructuredTableReferenceKeywordType keyWord)
Public Sub New(tableData As Object, keyWord As StructuredTableReferenceKeywordType)
Type | Name | Description |
---|---|---|
object | tableData | Table data |
StructuredTableReferenceKeywordType | keyWord | A FarPoint.CalcEngine.StructuredTableReferenceKeywordType enum value that specifies part of table |
Creates a new expression representing a table reference expression.
public TableReferenceExpression(object tableData, StructuredTableReferenceKeywordType keyword, bool hasSpaceAfterKeyword, bool hasSpaceBefore, int firstColIndex, int lastColIndex)
Public Sub New(tableData As Object, keyword As StructuredTableReferenceKeywordType, hasSpaceAfterKeyword As Boolean, hasSpaceBefore As Boolean, firstColIndex As Integer, lastColIndex As Integer)
Type | Name | Description |
---|---|---|
object | tableData | Table data |
StructuredTableReferenceKeywordType | keyword | A FarPoint.CalcEngine.StructuredTableReferenceKeywordType enum value that specifies part of table |
bool | hasSpaceAfterKeyword | A boolean value that determines whether there is a space after the keyword |
bool | hasSpaceBefore | A boolean value that determines whether there is a space before the keyword |
int | firstColIndex | An int value that specifies the first table column index to refer to |
int | lastColIndex | An int value that specifies the last table column indext to refer to |
Creates a new expression representing a table reference expression.
public TableReferenceExpression(object tableData, StructuredTableReferenceKeywordType keyword, int firstColIndex, int lastColIndex)
Public Sub New(tableData As Object, keyword As StructuredTableReferenceKeywordType, firstColIndex As Integer, lastColIndex As Integer)
Type | Name | Description |
---|---|---|
object | tableData | Table data |
StructuredTableReferenceKeywordType | keyword | A FarPoint.CalcEngine.StructuredTableReferenceKeywordType enum value that specifies part of table |
int | firstColIndex | An int value that specifies the first table column index to refer to |
int | lastColIndex | An int value that specifies the last table column indext to refer to |
Creates a new expression representing a table reference expression.
public TableReferenceExpression(object tableData, int firstColIndex, int lastColIndex)
Public Sub New(tableData As Object, firstColIndex As Integer, lastColIndex As Integer)
Type | Name | Description |
---|---|---|
object | tableData | Table data |
int | firstColIndex | An int value that specifies the first table column index to refer to |
int | lastColIndex | An int value that specifies the last table column indext to refer to |
Creates a new expression representing a table reference expression.
public TableReferenceExpression(object tableData)
Public Sub New(tableData As Object)
Type | Name | Description |
---|---|---|
object | tableData | Table data |