PageSettings.Landscape 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í hodnotu označující, zda je stránka vytištěna v orientaci na šířku nebo na výšku.
public:
property bool Landscape { bool get(); void set(bool value); };
public bool Landscape { get; set; }
member this.Landscape : bool with get, set
Public Property Landscape As Boolean
Hodnota vlastnosti
true
pokud má být stránka vytištěna v orientaci na šířku; v opačném případě . false
Výchozí hodnota je určena tiskárnou.
Výjimky
Tiskárna s názvem ve PrinterName vlastnosti neexistuje.
Příklady
Následující příklad kódu nastaví výchozí orientaci stránky dokumentu na šířku PrintDocument.DefaultPageSettings vlastnosti a vytiskne dokument. Příklad má tři požadavky:
Proměnná s názvem
filePath
byla nastavena na cestu k souboru, který se má vytisknout.Byla definována metoda s názvem
pd_PrintPage
, která zpracovává PrintPage událost.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 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.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
Vlastnost můžete použít PrinterSettings.LandscapeAngle k určení úhlu ve stupních, ve které se orientace na výšku otočí, aby vznikla orientace na šířku.