FieldsAdd Method (Field, 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
)
Public Sub Add (
item As Field,
ByRef Before As Object
)
public:
virtual void Add(
Field^ item,
Object^% Before
) sealed
function Add(item, Before);
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.
Remarks See Also