Skype4COM 1.0.36.0
|
Call Class Reference
This class manages calls and call properties. More...
import "Skype4COM.idl";
Detailed Description
This class manages calls and call properties.
Use the Call class to manage call properties, answer incoming calls, change call status, and send DTMF tones.
- Example 1: Placing a call
'// Create a Skype object: Set oSkype = WScript.CreateObject("Skype4COM.Skype", "Skype_") '// Place a call using this Skype object: Set oCall = oSkype.PlaceCall("echo123") '// To place a call on hold: oCall.Hold '// To resume a call that was on hold: oCall.Resume '// To end a call: oCall.Finish '// Call status events: Public Sub Skype_CallStatus(ByRef oCall, ByVal Status) End Sub
- Example 2: Accessing call properties
'// To query a call object with a specified ID: Set oCall = oSkype.Call(oId) '// To query the Skypename of a remote caller: Set oHandle = oCall.PartnerHandle '// To query the display name of a remote caller: Set oName = oCall.PartnerDisplayName
- See also:
- ICall, ICallCollection, _ISkypeEvents
The documentation for this class was generated from the following file:
Copyright � 2006 Skype Limited. All rights reserved.