PrinterSettings 类
指定有关文档打印方式的信息,其中包括打印文档的打印机。
**命名空间:**System.Drawing.Printing
**程序集:**System.Drawing(在 system.drawing.dll 中)
语法
声明
<SerializableAttribute> _
Public Class PrinterSettings
Implements ICloneable
用法
Dim instance As PrinterSettings
[SerializableAttribute]
public class PrinterSettings : ICloneable
[SerializableAttribute]
public ref class PrinterSettings : ICloneable
/** @attribute SerializableAttribute() */
public class PrinterSettings implements ICloneable
SerializableAttribute
public class PrinterSettings implements ICloneable
备注
通常可以通过 PrintDocument.PrinterSettings 或 PageSettings.PrinterSettings 属性访问 PrinterSettings 以修改打印机设置。最常用的打印机设置是 PrinterName,它指定要打印到的打印机。
有关打印的更多信息,请参见 System.Drawing.Printing 命名空间概述。
示例
下面的代码示例在指定的打印机上打印文档。此示例包括三个必备条件:
已经将名为
filePath
的变量设置为要打印的文件的路径。已经定义名为
pd_PrintPage
的方法(该方法处理 PrintPage 事件)。已经将名为
printer
的变量设置为打印机的名称。
在此示例中使用 System.Drawing、System.Drawing.Printing 和 System.IO 命名空间。
Public Sub Printing(printer As String)
Try
streamToPrint = New StreamReader(filePath)
Try
printFont = New Font("Arial", 10)
Dim pd As New PrintDocument()
AddHandler pd.PrintPage, AddressOf pd_PrintPage
' Specify the printer to use.
pd.PrinterSettings.PrinterName = printer
If pd.PrinterSettings.IsValid then
pd.Print()
Else
MessageBox.Show("Printer is invalid.")
End If
Finally
streamToPrint.Close()
End Try
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
public void Printing(string printer) {
try {
streamToPrint = new StreamReader (filePath);
try {
printFont = new Font("Arial", 10);
PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
// Specify the printer to use.
pd.PrinterSettings.PrinterName = printer;
if (pd.PrinterSettings.IsValid) {
pd.Print();
}
else {
MessageBox.Show("Printer is invalid.");
}
}
finally {
streamToPrint.Close();
}
}
catch(Exception ex) {
MessageBox.Show(ex.Message);
}
}
public:
void Printing( String^ printer )
{
try
{
streamToPrint = gcnew StreamReader( filePath );
try
{
printFont = gcnew System::Drawing::Font( "Arial",10 );
PrintDocument^ pd = gcnew PrintDocument;
pd->PrintPage += gcnew PrintPageEventHandler(
this, &Form1::pd_PrintPage );
// Specify the printer to use.
pd->PrinterSettings->PrinterName = printer;
if ( pd->PrinterSettings->IsValid )
{
pd->Print();
}
else
{
MessageBox::Show( "Printer is invalid." );
}
}
finally
{
streamToPrint->Close();
}
}
catch ( Exception^ ex )
{
MessageBox::Show( ex->Message );
}
}
public void Printing(String printer)
{
try {
streamToPrint = new StreamReader(filePath);
try {
printFont = new Font("Arial", 10);
PrintDocument pd = new PrintDocument();
pd.add_PrintPage(new PrintPageEventHandler(pd_PrintPage));
// Specify the printer to use.
pd.get_PrinterSettings().set_PrinterName(printer);
if (pd.get_PrinterSettings().get_IsValid()) {
pd.Print();
}
else {
MessageBox.Show("Printer is invalid.");
}
}
finally {
streamToPrint.Close();
}
}
catch (System.Exception ex) {
MessageBox.Show(ex.get_Message());
}
} //Printing
继承层次结构
System.Object
System.Drawing.Printing.PrinterSettings
线程安全
此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。
平台
Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
请参见
参考
PrinterSettings 成员
System.Drawing.Printing 命名空间
PrinterName
PrintDocument.PrinterSettings 属性
PageSettings.PrinterSettings 属性