ExpCompositionContent.AutomationProviderRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
// Register
event_token AutomationProviderRequested(TypedEventHandler<ExpCompositionContent, ExpCompositionContentAutomationProviderRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void AutomationProviderRequested(event_token const* cookie) const;
// Revoke with event_revoker
ExpCompositionContent::AutomationProviderRequested_revoker AutomationProviderRequested(auto_revoke_t, TypedEventHandler<ExpCompositionContent, ExpCompositionContentAutomationProviderRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<ExpCompositionContent,ExpCompositionContentAutomationProviderRequestedEventArgs> AutomationProviderRequested;
function onAutomationProviderRequested(eventArgs) { /* Your code */ }
expCompositionContent.addEventListener("automationproviderrequested", onAutomationProviderRequested);
expCompositionContent.removeEventListener("automationproviderrequested", onAutomationProviderRequested);
- or -
expCompositionContent.onautomationproviderrequested = onAutomationProviderRequested;
Public Custom Event AutomationProviderRequested As TypedEventHandler(Of ExpCompositionContent, ExpCompositionContentAutomationProviderRequestedEventArgs)