In C#, how is it possible to distinguish physicals printers as opposed to virtual one (like a PDF writer).
Best case scenario i'd like to do this:
bool physical = PrinterSettings.InstalledPrinters[0].IsPhysicalPrinter();
public static bool IsPhysicalPrinter(this PrinterSettings printer)
{
//Do Some Magics
}