Click or drag to resize
FieldsAdd Method (Field, Object, Object) DataPA OpenAnalytics
DataPA OpenAnalytics API Reference
Adds a field to this fields collection

Namespace: DataPA.Utils.QueryEngine
Assembly: DataPAQueryEngine (in DataPAQueryEngine.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void Add(
	Field item,
	ref Object Before,
	ref Object After
)

Parameters

item
Type: DataPA.Utils.QueryEngineField
The field to add
Before
Type: SystemObject
Optional. An expression that specifies a relative position in the fields collection. The element to be added is placed in the collection before the element identified by the Before argument. If Before is a numeric expression, it must be a number from 1 through the value of the collection's Count Property (Collection Object). If Before is a String expression, it must correspond to the name of the field. You cannot specify both Before and After.
After
Type: SystemObject
Optional. An expression that specifies a relative position in the fields collection. The element to be added is placed in the collection after the element identified by the After argument. If After is a numeric expression, it must be a number from 1 through the value of the collection's Count property. If After is a String expression, it must correspond to the name of the field. You cannot specify both Before and After.
Remarks