PrintDocument.DefaultPageSettings 属性
获取或设置页设置,这些页设置用作要打印的所有页的默认设置。
**命名空间:**System.Drawing.Printing
**程序集:**System.Drawing(在 system.drawing.dll 中)
语法
声明
Public Property DefaultPageSettings As PageSettings
用法
Dim instance As PrintDocument
Dim value As PageSettings
value = instance.DefaultPageSettings
instance.DefaultPageSettings = value
public PageSettings DefaultPageSettings { get; set; }
public:
property PageSettings^ DefaultPageSettings {
PageSettings^ get ();
void set (PageSettings^ value);
}
/** @property */
public PageSettings get_DefaultPageSettings ()
/** @property */
public void set_DefaultPageSettings (PageSettings value)
public function get DefaultPageSettings () : PageSettings
public function set DefaultPageSettings (value : PageSettings)
属性值
为文档指定默认页设置的 PageSettings。
备注
可以通过 DefaultPageSettings 属性指定若干个默认页设置。例如,PageSettings.Color 属性指定是否用彩色打印页,PageSettings.Landscape 属性指定横向或纵向打印,而 PageSettings.Margins 属性指定页边距。
若要逐页指定设置,请分别处理 PrintPage 或 QueryPageSettings 事件并修改 PrintPageEventArgs 或 QueryPageSettingsEventArgs 中包含的 PageSettings 参数。
提示
打印开始后,通过 DefaultPageSettings 属性更改页设置对正在打印的页没有任何影响。
示例
下面的代码示例将文档的页面方向设置为横向,并打印该文档。此示例做了三个假定:已经将名为 filePath
的变量设置为要打印的文件的路径;已经定义名为 pd_PrintPage
的方法(该方法处理 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 System::Drawing::Font( "Arial",10 );
PrintDocument^ pd = gcnew PrintDocument;
pd->PrintPage += gcnew PrintPageEventHandler(
this, &Form1::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
平台
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
请参见
参考
PrintDocument 类
PrintDocument 成员
System.Drawing.Printing 命名空间
PageSettings 类
PrintController
PrinterSettings