取得打印機名稱
使用 GetPrinterNames
方法檢索連接到機器的所有可用印表機。該方法將返回一個以字串資料類型表示的印表機名稱列表。
using IronPrint; using System; using System.Collections.Generic; // Retrieve printers' name List<string> printersName = Printer.GetPrinterNames(); foreach (var printer in printersName) { Console.WriteLine(printer); }
Imports IronPrint Imports System Imports System.Collections.Generic ' Retrieve printers' name Private printersName As List(Of String) = Printer.GetPrinterNames() For Each printer In printersName Console.WriteLine(printer) Next printer
Install-Package IronPrint
使用 GetPrinterNames
方法檢索連接到機器的所有可用印表機。該方法將返回一個以字串資料類型表示的印表機名稱列表。