(高手请进)用C# 如何获取打印机中的任务数

用C#如何获取打印机中的任务数最好给个实例。谢谢!... 用C# 如何获取打印机中的任务数
最好给个实例。
谢谢!
展开
 我来答
iceser
推荐于2016-03-23 · TA获得超过2708个赞
知道大有可为答主
回答量:695
采纳率:100%
帮助的人:438万
展开全部
在MSDN找到的,不知道可以用不,没测试过,呵呵

获取打印服务器承载的打印队列的集合。

命名空间: System.Printing
程序集: System.Printing(在 System.Printing.dll 中)

语法
Visual Basic(声明)
Public Function GetPrintQueues As PrintQueueCollection

Visual Basic(用法)
Dim instance As PrintServer
Dim returnValue As PrintQueueCollection

returnValue = instance.GetPrintQueues()

C#
public PrintQueueCollection GetPrintQueues()

Visual C++
public:
PrintQueueCollection^ GetPrintQueues()

J#
public PrintQueueCollection GetPrintQueues()

JScript
public function GetPrintQueues() : PrintQueueCollection

返回值
类型:System.Printing..::.PrintQueueCollection

打印服务器上的打印队列的 PrintQueueCollection。

示例
下面的示例演示如何使用此方法列出 PrintServer 承载的打印队列。

C# 复制代码
// Create a PrintServer
// "theServer" must be a print server to which the user has full print access.
PrintServer myPrintServer = new PrintServer(@"\\theServer");

// List the print server's queues
PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues();
String printQueueNames = "My Print Queues:\n\n";
foreach (PrintQueue pq in myPrintQueues)
{
printQueueNames += "\t" + pq.Name + "\n";
}
Console.WriteLine(printQueueNames);
Console.WriteLine("\nPress Return to continue.");
Console.ReadLine();

平台
Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。

版本信息
.NET Framework
受以下版本支持:3.5、3.0 SP1、3.0

参考资料: MSDN

匿名用户
2015-06-26
展开全部
在MSDN找到的,不知道可以用不,没测试过,呵呵

获取打印服务器承载的打印队列的集合。

命名空间: System.Printing
程序集: System.Printing(在 System.Printing.dll 中)

语法
Visual Basic(声明)
Public Function GetPrintQueues As PrintQueueCollection

Visual Basic(用法)
Dim instance As PrintServer
Dim returnValue As PrintQueueCollection

returnValue = instance.GetPrintQueues()

C#
public PrintQueueCollection GetPrintQueues()

Visual C++
public:
PrintQueueCollection^ GetPrintQueues()

J#
public PrintQueueCollection GetPrintQueues()

JScript
public function GetPrintQueues() : PrintQueueCollection

返回值
类型:System.Printing..::.PrintQueueCollection

打印服务器上的打印队列的 PrintQueueCollection。

示例
下面的示例演示如何使用此方法列出 PrintServer 承载的打印队列。

C# 复制代码
// Create a PrintServer
// "theServer" must be a print server to which the user has full print access.
PrintServer myPrintServer = new PrintServer(@"\\theServer");

// List the print server's queues
PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues();
String printQueueNames = "My Print Queues:\n\n";
foreach (PrintQueue pq in myPrintQueues)
{
printQueueNames += "\t" + pq.Name + "\n";
}
Console.WriteLine(printQueueNames);
Console.WriteLine("\nPress Return to continue.");
Console.ReadLine();

平台
Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。

版本信息
.NET Framework
受以下版本支持:3.5、3.0 SP1、3.0。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式