BiDataRow
This class represents a row in a BiDataTable.
This class extends
BiObject
and therefore all methods and fields available for
BiObject
are also available for
BiDataRow
.
Constructor
new
BiDataRow
(
)
Parameters
No parameters.
Properties
| Name | Type | get | set | Descripton |
table |
|
![]() |
Returns the table the row is part of. |
Methods
| Name | Description |
getValueByIndex |
Returns a value given the column index. |
getValueByName |
Returns a value given the column name. |
Events
None.
Static Methods
None.
Static Fields
None.
Remarks
To use the BiDataRow create a sub class and override getValueByIndex and/or getValueByName to return something meaningful.
Method Details
getValueByIndex
Returns a value given the column index.
Syntax
object.getValueByIndex
(
n
)
Parameters
| Name | Type | Optional | Default | Descripton |
n |
Number |
The index of the column to get the value for. |
Return Type
Object
getValueByName
Returns a value given the column name.
Syntax
object.getValueByName
(
s
)
Parameters
| Name | Type | Optional | Default | Descripton |
s |
String |
The name of the column to get the value for. |
Return Type
Object
