Print3DWorkflow.PrinterChanged Event

Definition

Occurs when the user changes the designated 3D printer.

// 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) 

Event Type

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Foundation.UniversalApiContract (introduced in v3.0)

Applies to