Click or drag to resize

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)
Syntax
C#
public FndDataRow NewRow()

Return Value

Type: FndDataRow
The newly created row
Examples
table.Rows.Add(table.NewRow());
See Also