InstalledPrinters
using System;
using System.Drawing.Printing;
class MainClass {
static void Main(string[] args) {
foreach (string printerName in PrinterSettings.InstalledPrinters) {
Console.WriteLine("Printer: {0}", printerName);
}
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
|