ContentIsland.AutomationProviderRequested Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn ein Automatisierungsanbieter für diese ContentIsland angefordert wird.
// 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)