次の方法で共有


PrinterSettings クラス

ドキュメントの印刷方法に関する情報 (印刷に使用するプリンタなど) を指定します。

この型のすべてのメンバの一覧については、PrinterSettings メンバ を参照してください。

System.Object
   System.Drawing.Printing.PrinterSettings

<Serializable>
<ComVisible(False)>
Public Class PrinterSettings   Implements ICloneable
[C#]
[Serializable]
[ComVisible(false)]
public class PrinterSettings : ICloneable
[C++]
[Serializable]
[ComVisible(false)]
public __gc class PrinterSettings : public ICloneable
[JScript]
public
   Serializable
 ComVisible(false)
class PrinterSettings implements ICloneable

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

通常、 PrintDocument.PrinterSettings プロパティまたは PageSettings.PrinterSettings プロパティを使用して PrinterSettings にアクセスし、プリンタ設定を変更します。最も一般的なプリンタ設定は、印刷するプリンタを指定する PrinterName です。

印刷の詳細については、 System.Drawing.Printing 名前空間のトピックを参照してください。

使用例

[Visual Basic, C#, C++] 指定したプリンタ上でドキュメントを印刷する例を次に示します。この例は、次の 3 つのことを前提にしています。変数 filePath に出力先のファイル パスが設定されていること、 PrintPage イベントを処理するメソッド pd_PrintPage が定義されていること、および変数 printer にプリンタ名が設定されていることです。

[Visual Basic, C#, C++] この例では、 System.DrawingSystem.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
   

[C#] 
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);
  }
}


[C++] 
public:
 void Printing(String* printer) {
   try {
     streamToPrint = new StreamReader (filePath);
     try {
       printFont = new System::Drawing::Font(S"Arial", 10);
       PrintDocument* pd = new PrintDocument(); 
       pd->PrintPage += new PrintPageEventHandler(this, &Form1::pd_PrintPage);
       // Specify the printer to use.
       pd->PrinterSettings->PrinterName = printer;

       if (pd->PrinterSettings->IsValid) {
          pd->Print();
       } 
       else {    
          MessageBox::Show(S"Printer is invalid.");
       }
     } 
     __finally {
       streamToPrint->Close();
     }
   } 
   catch(Exception* ex) {
     MessageBox::Show(ex->Message);
   }
 }
 

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Drawing.Printing

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System.Drawing (System.Drawing.dll 内)

参照

PrinterSettings メンバ | System.Drawing.Printing 名前空間 | PrinterName | PrintDocument.PrinterSettings | PageSettings.PrinterSettings