PrinterSettings.IsValid Proprietà

Definizione

Ottiene un valore che indica se la proprietà PrinterName definisce una stampante valida.

public:
 property bool IsValid { bool get(); };
public bool IsValid { get; }
member this.IsValid : bool
Public ReadOnly Property IsValid As Boolean

Valore della proprietà

true se la proprietà PrinterName definisce una stampante valida; in caso contrario, false.

Esempio

Nell'esempio di codice seguente viene specificata la stampante di destinazione impostando la PrinterName proprietà e, se è IsValidtrue, viene stampato il documento nella stampante specificata. Nell'esempio sono presenti tre prerequisiti:

  • Una variabile denominata filePath è stata impostata sul percorso del file da stampare.

  • È stato definito un metodo denominato pd_PrintPage, che gestisce l'evento PrintPage .

  • Una variabile denominata printer è stata impostata sul nome della stampante.

Usare gli System.Drawingspazi dei nomi , System.Drawing.Printinge System.IO per questo esempio.

public:
   void Printing( String^ printer )
   {
      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 );
            // Specify the printer to use.
            pd->PrinterSettings->PrinterName = printer;
            if ( pd->PrinterSettings->IsValid )
            {
               pd->Print();
            }
            else
            {
               MessageBox::Show( "Printer is invalid." );
            }
         }
         finally
         {
            streamToPrint->Close();
         }
      }
      catch ( Exception^ ex ) 
      {
         MessageBox::Show( ex->Message );
      }
   }
public void Printing(string printer) {
  try {
    streamToPrint = new StreamReader (filePath);
    try {
      printFont = new Font("Arial", 10);
      PrintDocument pd = new PrintDocument(); 
      pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
      // Specify the printer to use.
      pd.PrinterSettings.PrinterName = printer;

      if (pd.PrinterSettings.IsValid) {
         pd.Print();
      } 
      else {	
         MessageBox.Show("Printer is invalid.");
      }
    } 
    finally {
      streamToPrint.Close();
    }
  } 
  catch(Exception ex) {
    MessageBox.Show(ex.Message);
  }
}
Public Sub Printing(printer As String)
    Try
        streamToPrint = New StreamReader(filePath)
        Try
            printFont = New Font("Arial", 10)
            Dim pd As New PrintDocument()
            AddHandler pd.PrintPage, AddressOf pd_PrintPage
            ' Specify the printer to use.
            pd.PrinterSettings.PrinterName = printer

            If pd.PrinterSettings.IsValid then
               pd.Print()
            Else
               MessageBox.Show("Printer is invalid.")
            End If
        Finally
            streamToPrint.Close()
        End Try
    Catch ex As Exception
        MessageBox.Show(ex.Message)
    End Try
End Sub

Commenti

Quando si ottiene o si impostano alcune proprietà, è necessaria una stampante valida oppure viene generata un'eccezione. Per evitare eccezioni, usare la IsValid proprietà dopo aver impostato l'oggetto PrinterName per determinare in modo sicuro se la stampante è valida.

Si applica a

Vedi anche