単一の印刷ページに適用する設定を指定します。
名前空間: System.Drawing.Printing
アセンブリ: System.Drawing (system.drawing.dll 内)
<SerializableAttribute> _
Public Class PageSettings
Implements ICloneable
Dim instance As PageSettings
[SerializableAttribute]
public class PageSettings : ICloneable
[SerializableAttribute]
public ref class PageSettings : ICloneable
/** @attribute SerializableAttribute() */
public class PageSettings implements ICloneable
SerializableAttribute
public class PageSettings implements ICloneable
PageSettings クラスを使用して、ページの印刷方法を変更する設定を指定します。通常、PrintDocument.DefaultPageSettings プロパティを使用して、印刷するすべてのページに既定の設定を指定します。ページごとに設定を指定するには、PrintDocument.PrintPage イベントまたは PrintDocument.QueryPageSettings イベントを処理し、それぞれ PrintPageEventArgs または QueryPageSettingsEventArgs に含まれる PageSettings 引数を変更します。
PrintDocument イベント処理の詳細については、PrintDocument クラスのトピックの概要を参照してください。印刷の詳細については、System.Drawing.Printing 名前空間のトピックの概要を参照してください。
PrintDocument.DefaultPageSettings プロパティを使用して文書の既定の用紙方向を横に設定し、Print メソッドを使用して文書を印刷するコード例を次に示します。この例には、次の 3 つの必要条件があります。
-
変数 filePath が印刷するファイルのパスに設定されていること。
-
PrintPage イベントを処理するメソッド pd_PrintPage が定義されていること。
-
変数 printer がプリンタ名に設定されていること。
この例では、System.Drawing、System.Drawing.Printing、および System.IO の各名前空間を使用します。
Public Sub Printing()
Try
streamToPrint = New StreamReader(filePath)
Try
printFont = New Font("Arial", 10)
Dim pd As New PrintDocument()
AddHandler pd.PrintPage, AddressOf pd_PrintPage
pd.PrinterSettings.PrinterName = printer
' Set the page orientation to landscape.
pd.DefaultPageSettings.Landscape = True
pd.Print()
Finally
streamToPrint.Close()
End Try
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
public void Printing() {
try {
streamToPrint = new StreamReader (filePath);
try {
printFont = new Font("Arial", 10);
PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
pd.PrinterSettings.PrinterName = printer;
// Set the page orientation to landscape.
pd.DefaultPageSettings.Landscape = true;
pd.Print();
}
finally {
streamToPrint.Close() ;
}
}
catch(Exception ex) {
MessageBox.Show(ex.Message);
}
}
public:
void Printing()
{
try
{
streamToPrint = gcnew StreamReader( filePath );
try
{
printFont = gcnew Font( "Arial",10 );
PrintDocument^ pd = gcnew PrintDocument;
pd->PrintPage += gcnew PrintPageEventHandler(
this, &Sample::pd_PrintPage );
pd->PrinterSettings->PrinterName = printer;
// Set the page orientation to landscape.
pd->DefaultPageSettings->Landscape = true;
pd->Print();
}
finally
{
streamToPrint->Close();
}
}
catch ( Exception^ ex )
{
MessageBox::Show( ex->Message );
}
}
public void Printing()
{
try {
streamToPrint = new StreamReader(filePath);
try {
printFont = new Font("Arial", 10);
PrintDocument pd = new PrintDocument();
pd.add_PrintPage(new PrintPageEventHandler(pd_PrintPage));
pd.get_PrinterSettings().set_PrinterName(printer);
// Set the page orientation to landscape.
pd.get_DefaultPageSettings().set_Landscape(true);
pd.Print();
}
finally {
streamToPrint.Close();
}
}
catch (System.Exception ex) {
MessageBox.Show(ex.get_Message());
}
} //Printing
System.Object
System.Drawing.Printing.PageSettings
この型の public static (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