Print3DWorkflow.PrintRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит, когда пользователь инициирует печать.
// Register
event_token PrintRequested(TypedEventHandler<Print3DWorkflow, Print3DWorkflowPrintRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void PrintRequested(event_token const* cookie) const;
// Revoke with event_revoker
Print3DWorkflow::PrintRequested_revoker PrintRequested(auto_revoke_t, TypedEventHandler<Print3DWorkflow, Print3DWorkflowPrintRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<Print3DWorkflow,Print3DWorkflowPrintRequestedEventArgs> PrintRequested;
function onPrintRequested(eventArgs) { /* Your code */ }
print3DWorkflow.addEventListener("printrequested", onPrintRequested);
print3DWorkflow.removeEventListener("printrequested", onPrintRequested);
- or -
print3DWorkflow.onprintrequested = onPrintRequested;
Public Custom Event PrintRequested As TypedEventHandler(Of Print3DWorkflow, Print3DWorkflowPrintRequestedEventArgs)