PrinterResolution 类

定义

表示打印机支持的分辨率。

public ref class PrinterResolution
public class PrinterResolution
[System.Serializable]
public class PrinterResolution
type PrinterResolution = class
[<System.Serializable>]
type PrinterResolution = class
Public Class PrinterResolution
继承
PrinterResolution
属性

示例

下面的代码示例使用 comboPrintResolution 支持的分辨率填充组合框。 该示例假定 PrintDocument 存在名为 的 printDoc 变量,并且存在特定的组合框。

// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display String.
PrinterResolution^ pkResolution;
for ( int i = 0; i < printDoc->PrinterSettings->PrinterResolutions->Count; i++ )
{
   pkResolution = printDoc->PrinterSettings->PrinterResolutions[ i ];
   comboPrintResolution->Items->Add( pkResolution );
}
// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display string.

PrinterResolution pkResolution;
for (int i = 0; i < printDoc.PrinterSettings.PrinterResolutions.Count; i++){
    pkResolution = printDoc.PrinterSettings.PrinterResolutions[i];
    comboPrintResolution.Items.Add(pkResolution);
}
' Add list of printer resolutions found on the printer to the combobox.
' The PrinterResolution's ToString() method will be used to provide the display string.
Dim pkResolution As PrinterResolution
For i = 0 to printDoc.PrinterSettings.PrinterResolutions.Count - 1
    pkResolution = printDoc.PrinterSettings.PrinterResolutions.Item(i)
    comboPrintResolution.Items.Add(pkResolution)
Next

注解

此类由 PrinterSettings.PrinterResolutionsPageSettings.PrinterResolution 属性用于获取打印机上可用的打印机分辨率,并分别设置页面的打印分辨率。

Kind使用 属性可确定打印机分辨率类型是否为PrinterResolutionKindCustom。 如果是这样,请使用 XY 属性分别确定水平方向和垂直方向的打印机分辨率。

有关打印的详细信息,请参阅 System.Drawing.Printing 命名空间概述。

构造函数

PrinterResolution()

初始化 PrinterResolution 类的新实例。

属性

Kind

获取或设置打印机分辨率。

X

获取水平打印机分辨率,以点/英寸为单位。

Y

获取垂直打印机分辨率,以点/英寸为单位。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

此成员重写 ToString() 方法。

适用于

另请参阅