PrintProcessorProperty 构造函数

定义

初始化 PrintProcessorProperty 类的新实例。

重载

PrintProcessorProperty(String)

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

PrintProcessorProperty(String, Object)

初始化 PrintProcessorProperty 类的新实例,该类具有指定属性的指定值。

PrintProcessorProperty(String)

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

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

参数

attributeName
String

已转换的 PrintProcessorProperty

注解

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

适用于

PrintProcessorProperty(String, Object)

初始化 PrintProcessorProperty 类的新实例,该类具有指定属性的指定值。

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

参数

attributeName
String

PrintProcessor 表示的 PrintProcessorProperty 属性的名称。

attributeValue
Object

PrintProcessorProperty 表示的属性的值。

注解

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

适用于