DataPA Enterprise Dashboard Controls API Reference
Adds a SummaryColumn to this collection.

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public void Add(
	ref SummaryColumn Item,
	ref Object Before = null,
	ref Object After = null
)
Visual Basic
Public Sub Add ( 
	ByRef Item As SummaryColumn,
	Optional ByRef Before As Object = Nothing,
	Optional ByRef After As Object = Nothing
)
Visual C++
public:
virtual void Add(
	SummaryColumn^% Item, 
	Object^% Before = nullptr, 
	Object^% After = nullptr
) sealed

Parameters

Item
Type: DataPAEnterpriseDashboard..::..SummaryColumn%
The SummaryColumn to add to this collection.
Before (Optional)
Type: System..::..Object%
Optional. An expression that specifies a relative position in the SummaryColumns. 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 SummaryColumns Count Property. If Before is a String expression, it must correspond to the ColumnName of a SummaryColumn in the SummaryColumns. You cannot specify both Before and After.
After (Optional)
Type: System..::..Object%
Optional. An expression that specifies a relative position in the SummaryColumns. 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 SummaryColumns Count Property. If After is a String expression, it must correspond to the ColumnName of a SummaryColumn in the SummaryColumns. You cannot specify both Before and After.

Remarks