PaperSource 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定给打印机送纸的纸盒。
public ref class PaperSource
public class PaperSource
[System.Serializable]
public class PaperSource
type PaperSource = class
[<System.Serializable>]
type PaperSource = class
Public Class PaperSource
- 继承
-
PaperSource
- 属性
示例
下面的代码示例使用 comboPaperSource
打印机支持的纸张源填充组合框。 SourceName标识为属性,该属性为通过DisplayMember组合框的 属性添加的项提供显示字符串。 该示例要求 PrintDocument 存在名为 的 printDoc
变量,并且存在特定的组合框。
// Add list of paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display String*.
comboPaperSource->DisplayMember = "SourceName";
PaperSource^ pkSource;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSources->Count; i++ )
{
pkSource = printDoc->PrinterSettings->PaperSources[ i ];
comboPaperSource->Items->Add( pkSource );
}
// Add list of paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember="SourceName";
PaperSource pkSource;
for (int i = 0; i < printDoc.PrinterSettings.PaperSources.Count; i++){
pkSource = printDoc.PrinterSettings.PaperSources[i];
comboPaperSource.Items.Add(pkSource);
}
' Add list of paper sources found on the printer to the combo box.
' The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember = "SourceName"
Dim pkSource As PaperSource
For i = 0 to printDoc.PrinterSettings.PaperSources.Count - 1
pkSource = printDoc.PrinterSettings.PaperSources.Item(i)
comboPaperSource.Items.Add(pkSource)
Next
注解
此类由 PrinterSettings.PaperSources 和 PageSettings.PaperSource 属性用于获取打印机上可用的纸张源纸盒,并分别设置页面的纸张源。
有关打印的详细信息,请参阅 System.Drawing.Printing 命名空间概述。
构造函数
PaperSource() |
初始化 PaperSource 类的新实例。 |
属性
Kind |
获取纸张来源。 |
RawKind |
获取或设置表示 PaperSourceKind 值之一或自定义值的整数。 |
SourceName |
获取或设置纸张来源的名称。 |
方法
Equals(Object) |
确定指定对象是否等于当前对象。 (继承自 Object) |
GetHashCode() |
作为默认哈希函数。 (继承自 Object) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ToString() |
以字符串形式提供有关 PaperSource 的信息。 |