ContentIsland.AutomationProviderRequested 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当为此 请求 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)