Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

PrintSupportExtensionSession.PrinterSelected Event

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Raised when the selected printer in the printer dialog is changed to the printer associated with printer support app.

// Register
event_token PrinterSelected(TypedEventHandler<PrintSupportExtensionSession, PrintSupportPrinterSelectedEventArgs const&> const& handler) const;

// Revoke with event_token
void PrinterSelected(event_token const* cookie) const;

// Revoke with event_revoker
PrintSupportExtensionSession::PrinterSelected_revoker PrinterSelected(auto_revoke_t, TypedEventHandler<PrintSupportExtensionSession, PrintSupportPrinterSelectedEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintSupportExtensionSession,PrintSupportPrinterSelectedEventArgs> PrinterSelected;
function onPrinterSelected(eventArgs) { /* Your code */ }
printSupportExtensionSession.addEventListener("printerselected", onPrinterSelected);
printSupportExtensionSession.removeEventListener("printerselected", onPrinterSelected);
- or -
printSupportExtensionSession.onprinterselected = onPrinterSelected;
Public Custom Event PrinterSelected As TypedEventHandler(Of PrintSupportExtensionSession, PrintSupportPrinterSelectedEventArgs) 

Event Type

Windows requirements

Requirements Description
Device family
Windows 11 Insider Preview (introduced in 10.0.23504.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v15.0)

Applies to


Feedback

Was this page helpful?