다음을 통해 공유


ContentIsland.AutomationProviderRequested 이벤트

정의

ContentIsland에 대한 자동화 공급자가 요청되면 발생합니다.

// Register
event_token AutomationProviderRequested(TypedEventHandler<ContentIsland, ContentIslandAutomationProviderRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ContentIsland::AutomationProviderRequested_revoker AutomationProviderRequested(auto_revoke_t, TypedEventHandler<ContentIsland, ContentIslandAutomationProviderRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContentIsland,ContentIslandAutomationProviderRequestedEventArgs> AutomationProviderRequested;
function onAutomationProviderRequested(eventArgs) { /* Your code */ }
contentIsland.addEventListener("automationproviderrequested", onAutomationProviderRequested);
contentIsland.removeEventListener("automationproviderrequested", onAutomationProviderRequested);
- or -
contentIsland.onautomationproviderrequested = onAutomationProviderRequested;
Public Custom Event AutomationProviderRequested As TypedEventHandler(Of ContentIsland, ContentIslandAutomationProviderRequestedEventArgs) 

이벤트 유형

적용 대상

추가 정보