PrinterSettings.PrinterResolutionCollection 类

定义

包含 PrinterResolution 对象的集合。

public: ref class PrinterSettings::PrinterResolutionCollection : System::Collections::ICollection
public class PrinterSettings.PrinterResolutionCollection : System.Collections.ICollection
type PrinterSettings.PrinterResolutionCollection = class
    interface ICollection
    interface IEnumerable
Public Class PrinterSettings.PrinterResolutionCollection
Implements ICollection
继承
PrinterSettings.PrinterResolutionCollection
实现

示例

下面的代码示例使用 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.PrinterResolutionCollection包含PrinterResolution表示通过 PrinterResolution.Kind 属性支持的打印机分辨率的 实例,该属性包含值之PrinterResolutionKind一。

通常,通过 PageSettings.PrinterResolution 属性将打印机的分辨率设置为通过 PrinterResolutions 集合提供的有效PrinterResolution实例。

如果 PrinterResolutionKindCustom,则使用 XY 属性分别确定水平方向和垂直方向的自定义打印机分辨率。

构造函数

PrinterSettings.PrinterResolutionCollection(PrinterResolution[])

初始化 PrinterSettings.PrinterResolutionCollection 类的新实例。

属性

Count

获取集合中可用打印机分辨率的数目。

Item[Int32]

获取指定索引处的 PrinterResolution

方法

Add(PrinterResolution)

PrinterResolution 添加到集合的末尾。

CopyTo(PrinterResolution[], Int32)

将当前 PrinterSettings.PrinterResolutionCollection 的内容复制到指定数组,从指定索引处开始。

Equals(Object)

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

(继承自 Object)
GetEnumerator()

返回一个可循环访问集合的枚举数。

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

ICollection.CopyTo(Array, Int32)

有关此成员的说明,请参见 CopyTo(Array, Int32)

ICollection.Count

有关此成员的说明,请参见 Count

ICollection.IsSynchronized

有关此成员的说明,请参见 IsSynchronized

ICollection.SyncRoot

有关此成员的说明,请参见 SyncRoot

IEnumerable.GetEnumerator()

有关此成员的说明,请参见 GetEnumerator()

扩展方法

Cast<TResult>(IEnumerable)

IEnumerable 的元素强制转换为指定的类型。

OfType<TResult>(IEnumerable)

根据指定类型筛选 IEnumerable 的元素。

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于

另请参阅