FieldsAdd Method (Field, Object, Object) |
|
DataPA OpenAnalytics API Reference
Adds a field to this fields collection
Namespace: DataPA.Utils.QueryEngineAssembly: 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
)
Public Sub Add (
item As Field,
ByRef Before As Object,
ByRef After As Object
)
public:
virtual void Add(
Field^ item,
Object^% Before,
Object^% After
) sealed
function Add(item, Before, 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 See Also