PageSettings.Landscape Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica se a página é impressa com orientação de paisagem ou de retrato.
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
Valor da propriedade
true
para imprimir a página com orientação paisagem; caso contrário, false
. O padrão é determinado pela impressora.
Exceções
A impressora nomeada na propriedade PrinterName não existe.
Exemplos
O exemplo de código a seguir define a orientação de página padrão de um documento como paisagem por meio da PrintDocument.DefaultPageSettings propriedade e imprime o documento. O exemplo tem três pré-requisitos:
Uma variável chamada
filePath
foi definida como o caminho do arquivo a ser impresso.Um método chamado
pd_PrintPage
, que manipula o PrintPage evento, foi definido.Uma variável chamada
printer
foi definida como o nome da impressora.
Use os System.Drawingnamespaces , System.Drawing.Printinge System.IO para este exemplo.
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
Comentários
Você pode usar a PrinterSettings.LandscapeAngle propriedade para determinar o ângulo, em graus, de que a orientação retrato é girada para produzir a orientação paisagem.