MakeDashboardColumn method

Creates a Dashboard Column object for use with the ::DashboardColumns property.

Use this method to create new Dashboard Columns that can then be added to an IERUCollection and set via the IERUDashboard::DashboardColumns property. At present, Dashboard Columns cannot be added to Calendar Page Dashboards.

Syntax


C++
HRESULT MakeDashboardColumn (
   VARIANT Column,
   LONG Operators,
   VARIANT OperatorArg,
   LONG CreateOptions,
   IERUDashboardColumn** ppDashboardColumn)
Scripting languages
Set DashboardColumn = Object.MakeDashboardColumn (
   Column as Variant,
   Operators as Long,
   OperatorArg as Variant)

Parameters


Column

The IERUDBColumn or ERUProjectField to be added.

Operators

Dashboard operators for the column. This parameter contains one or more values from ERUDashboardOperator, logically OR'ed together.

OperatorArg

Optional dashboard operator argument. Note that the dashboard argument is only valid if the erDashOpSubColumnSelected operator is specified.

ppDashboardColumn

Upon return, an IERUDashboardColumn interface pointer to the newly-added Dashboard Column.

Return value


C++

The return code.

Scripting languages

An IERUDashboardColumn interface pointer to the newly-added Dashboard Column.

Home

Interface

IERUDashboard