ThbTapiCall.ConferenceCall
Unit: hbTapi
 

Returns the conference call if the call is either a conference call or a participant call in a conference call, otherwise it returns nil.

if call.ConferecneCall = call then
  // call is a conferece call
else if call.ConferecneCall <> nil
  // call is a member of a conference
else
  // call is not a participant of a conference

For example, after SetupConference method has been called successfully, you are able to use the call's ConferenceCall property to access the related conference call. If ConferenceCall returns nil, there is no related conference.

The return value is either nil, the call itself or another participant of the conference.

Use ThbTapiLine.GetConfRelatedCalls to get all calls within a conference.

Declaration

property ConferenceCall: ThbTapiCall;

See Also

ThbTapiLine.GetConfRelatedCalls, Establish a Conference Call