GroupColumn property

This property is implemented by the following interfaces. Click one of the links below to jump to the description of the property as it pertains to that interface.

IERUDBQuery
IERUProjectSchedule

 

 

GroupColumn property

Sets or returns the ID of the grouping column.

Syntax


C++

HRESULT get_GroupColumn(LONG* pColumnID)

HRESULT put_GroupColumn(LONG myColumnID)

Scripting languages

columnID = object.GroupColumn

object.GroupColumn = columnID

Remarks


Grouping puts in expandable and collapsible subheadings for each group of entries with the same value in the grouping column. For example, you might want to see an Issues database grouped by Priority.

Setting GroupColumn to -1 means that there is no group column.

This property is used to override the user's default group column setting.

Go to Top

Home

Applies to

IERUDBQuery

 

 

GroupColumn property

Returns or sets the project field used for grouping. If the member input is null, the project default is used. If you specify a member, then that member's preference is accessed.

Syntax


C++

HRESULT get_GroupColumn(
   
IERUMember* Member,
   ERUProjectField* pGroupColumn)

HRESULT put_GroupColumn(
   IERUMember* Member,
   ERUProjectField MyGroupColumn)

Scripting languages

GroupColumn = object.GroupColumn(
   
Member as IERUMember)

object.GroupColumn(
   
Member as IERUMember) = pGroupColumn

 

Go to Top

Home

Applies to
IERUProjectSchedule