ITACDGroupEvent::get_Group method (tapi3.h)

The get_Group method gets the ITACDGroup interface pointer for the group on which the event occurred.

Syntax

HRESULT get_Group(
  [out] ITACDGroup **ppGroup
);

Parameters

[out] ppGroup

Pointer to ITACDGroup interface on which the event occurred.

Return value

This method can return one of these values.

Value Meaning
S_OK
Method succeeded.
E_OUTOFMEMORY
Insufficient memory exists to perform the operation.
E_POINTER
The ppGroup parameter is not a valid pointer.

Remarks

TAPI calls the AddRef method on the ITACDGroup interface returned by ITACDGroupEvent::get_Group. The application must call Release on the ITACDGroup interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header tapi3.h (include Tapi3.h)
Library Uuid.lib
DLL Tapi3.dll

See also

ITACDGroup

ITACDGroupEvent