使用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
Dim printersName As List(Of String) = Printer.GetPrinterNames()
For Each printer In printersName
Console.WriteLine(printer)
Next使用GetPrinterNames方法检索连接到机器的所有可用打印机。该方法将返回一个字符串数据类型的打印机名称列表。
这段代码片段提供了一种简单有效的方法来列出连接到您计算机的所有打印机,这对于在大型应用程序中调试或管理打印机配置非常有用。
探索高级打印机设置指南Nuget Downloads 46,090|版本:2026.9刚刚发布