FndDataTable.NewRow Method |
Creates a new FndDataRow based on the schema defined in Columns property. Object type is defined in Columns.ObjectType property (default FndDataRow)
This function only creates the object instance, the new row is NOT automatically added to the Rows collection.
Namespace:
Ifs.Fnd.Data
Assembly:
Ifs.Fnd.Data (in Ifs.Fnd.Data.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntaxpublic FndDataRow NewRow()
Return Value
Type:
FndDataRowThe newly created row
Examplestable.Rows.Add(table.NewRow());
See Also