PrintDocument.DefaultPageSettings Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví nastavení stránky, které jsou použity jako výchozí pro všechny stránky k tisku.
public:
property System::Drawing::Printing::PageSettings ^ DefaultPageSettings { System::Drawing::Printing::PageSettings ^ get(); void set(System::Drawing::Printing::PageSettings ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Printing.PageSettings DefaultPageSettings { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DefaultPageSettings : System.Drawing.Printing.PageSettings with get, set
Public Property DefaultPageSettings As PageSettings
Hodnota vlastnosti
A PageSettings , který určuje výchozí nastavení stránky pro dokument.
- Atributy
Příklady
Následující příklad kódu nastaví orientaci stránky dokumentu na šířku a vytiskne dokument. V příkladu se předpokládá tři předpoklady: že proměnná s názvem filePath
byla nastavena na cestu k souboru k tisku, že byla definována metoda s názvem pd_PrintPage
, která zpracovává PrintPage událost, a že proměnná s názvem printer
byla nastavena na název tiskárny.
V tomto příkladu System.Drawingpoužijte obory názvů , System.Drawing.Printinga System.IO .
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.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 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
Poznámky
Prostřednictvím vlastnosti můžete zadat několik výchozích DefaultPageSettings nastavení stránky. Vlastnost například určuje, PageSettings.Color jestli se stránka vytiskne barevně, PageSettings.Landscape vlastnost určuje orientaci na šířku nebo na výšku PageSettings.Margins a vlastnost určuje okraje stránky.
Pokud chcete určit nastavení pro jednotlivé stránky, zpracujte PrintPage událost nebo QueryPageSettings a upravte PageSettings argument zahrnutý v PrintPageEventArgsQueryPageSettingsEventArgsnebo v uvedeném pořadí.
Poznámka
Po zahájení tisku nebudou změny nastavení stránky prostřednictvím DefaultPageSettings vlastnosti mít vliv na vytištěné stránky.