PrintDriverProperty 构造函数

定义

初始化 PrintDriverProperty 类的新实例。

重载

PrintDriverProperty(String)

针对指定的属性初始化 PrintDriverProperty 类的新实例。

PrintDriverProperty(String, Object)

初始化 PrintDriverProperty 类的一个新实例,该类具有指定特性的指定值。

PrintDriverProperty(String)

针对指定的属性初始化 PrintDriverProperty 类的新实例。

public:
 PrintDriverProperty(System::String ^ attributeName);
public PrintDriverProperty (string attributeName);
new System.Printing.IndexedProperties.PrintDriverProperty : string -> System.Printing.IndexedProperties.PrintDriverProperty
Public Sub New (attributeName As String)

参数

attributeName
String

PrintDriver 表示的 PrintDriverProperty 属性的名称。

注解

attributeName拼写应与打印系统对象的某个特定PrintDriver属性的名称完全相同,包括大小写。 例如, QueueDriver 对象的 属性 PrintQueue 必须拼写为“QueueDriver”,而不是“PrintDriver”或“Queuedriver”。

适用于

PrintDriverProperty(String, Object)

初始化 PrintDriverProperty 类的一个新实例,该类具有指定特性的指定值。

public:
 PrintDriverProperty(System::String ^ attributeName, System::Object ^ attributeValue);
public PrintDriverProperty (string attributeName, object attributeValue);
new System.Printing.IndexedProperties.PrintDriverProperty : string * obj -> System.Printing.IndexedProperties.PrintDriverProperty
Public Sub New (attributeName As String, attributeValue As Object)

参数

attributeName
String

PrintDriver 表示的 PrintDriverProperty 属性的名称。

attributeValue
Object

PrintDriverProperty 表示的属性的值。

注解

attributeName拼写应与打印系统对象的某个特定PrintDriver属性的名称完全相同,包括大小写。 例如, QueueDriver 对象的 属性 PrintQueue 必须拼写为“QueueDriver”,而不是“PrintDriver”或“Queuedriver”。

适用于