PrintStreamProperty 构造函数

定义

初始化 PrintStreamProperty 类的新实例。

重载

PrintStreamProperty(String)

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

PrintStreamProperty(String, Object)

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

PrintStreamProperty(String)

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

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

参数

attributeName
String

Stream 表示的 PrintStreamProperty 属性的名称。

注解

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

适用于

PrintStreamProperty(String, Object)

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

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

参数

attributeName
String

Stream 表示的 PrintStreamProperty 属性的名称。

attributeValue
Object

PrintStreamProperty 表示的属性的值。

注解

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

适用于