次の方法で共有


PhoneCall.StatusChanged イベント

定義

PhoneCall.Status の値が変更されたときに発生するイベント。

// Register
event_token StatusChanged(TypedEventHandler<PhoneCall, IInspectable const&> const& handler) const;

// Revoke with event_token
void StatusChanged(event_token const* cookie) const;

// Revoke with event_revoker
PhoneCall::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<PhoneCall, IInspectable const&> const& handler) const;
public event TypedEventHandler<PhoneCall,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
phoneCall.addEventListener("statuschanged", onStatusChanged);
phoneCall.removeEventListener("statuschanged", onStatusChanged);
- or -
phoneCall.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of PhoneCall, Object) 

イベントの種類

Windows の要件

アプリの機能
phoneCall

適用対象