AdControl.OnManipulationStateChanged 事件

定義

AdControl 收到橫幅廣告中的操作狀態變更事件時引發。

// Register
event_token OnManipulationStateChanged(EventHandler<ManipulationStateChangedEventArgs> const& handler) const;

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

// Revoke with event_revoker
OnManipulationStateChanged_revoker OnManipulationStateChanged(auto_revoke_t, EventHandler<ManipulationStateChangedEventArgs> const& handler) const;
public event System.EventHandler<ManipulationStateChangedEventArgs> OnManipulationStateChanged;
function onOnManipulationStateChanged(eventArgs) { /* Your code */ }
adControl.addEventListener("onmanipulationstatechanged", onOnManipulationStateChanged);
adControl.removeEventListener("onmanipulationstatechanged", onOnManipulationStateChanged);
- or -
adControl.ononmanipulationstatechanged = onOnManipulationStateChanged;
Public Custom Event OnManipulationStateChanged As EventHandler(Of ManipulationStateChangedEventArgs) 

事件類型

System.EventHandler<ManipulationStateChangedEventArgs>

適用於