 | DataFrameAddRows(DataRowCollection) Method |
Adds the data from the given DataRowCollection.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRows(
DataRowCollection rows
)
Public Function AddRows (
rows As DataRowCollection
) As DataFrame
public:
DataFrame^ AddRows(
DataRowCollection^ rows
)
member AddRows :
rows : DataRowCollection -> DataFrame
Parameters
- rows DataRowCollection
- A DataRowCollection.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the number of columns
in the DataRowCollection does not match number of columns in this data
frame. |
Remarks
The row key are set to rowIndex + 1.
See Also