다음을 통해 공유


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>

적용 대상