 | DataFrameAddRows(Int32, DataRowCollection) Method |
Adds the data from the given DataRow using the specified column as row keys.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRows(
int keyColumn,
DataRowCollection rows
)
Public Function AddRows (
keyColumn As Integer,
rows As DataRowCollection
) As DataFrame
public:
DataFrame^ AddRows(
int keyColumn,
DataRowCollection^ rows
)
member AddRows :
keyColumn : int *
rows : DataRowCollection -> DataFrame
Parameters
- keyColumn Int32
- A column containing row keys.
- 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. |
See Also