Print3DWorkflow.PrinterChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el usuario cambia la impresora 3D designada.
// Register
event_token PrinterChanged(TypedEventHandler<Print3DWorkflow, Print3DWorkflowPrinterChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void PrinterChanged(event_token const* cookie) const;
// Revoke with event_revoker
Print3DWorkflow::PrinterChanged_revoker PrinterChanged(auto_revoke_t, TypedEventHandler<Print3DWorkflow, Print3DWorkflowPrinterChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<Print3DWorkflow,Print3DWorkflowPrinterChangedEventArgs> PrinterChanged;
function onPrinterChanged(eventArgs) { /* Your code */ }
print3DWorkflow.addEventListener("printerchanged", onPrinterChanged);
print3DWorkflow.removeEventListener("printerchanged", onPrinterChanged);
- or -
print3DWorkflow.onprinterchanged = onPrinterChanged;
Public Custom Event PrinterChanged As TypedEventHandler(Of Print3DWorkflow, Print3DWorkflowPrinterChangedEventArgs)
Tipo de evento
Requisitos de Windows
Familia de dispositivos |
Windows 10 Anniversary Edition (se introdujo en la versión 10.0.14393.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
API contract |
Windows.Foundation.UniversalApiContract (se introdujo en la versión v3.0)
|