Click or drag to resize

FndDataColumnCollection.TableType Property

Property TableType indicates what kind of object should be instantiated to match this meta data. This type must be a subclass from FndDataTable and must have a constructor without parameters

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 Type TableType { get; set; }

Property Value

Type: Type
Examples
This example shows how to use this property
dataColumns.TableType = typeof(OrderLineTable)
See Also