PrinterSettings.PaperSources Propiedad

Definición

Obtiene las bandejas fuente de papel que se encuentran disponibles en la impresora.

public:
 property System::Drawing::Printing::PrinterSettings::PaperSourceCollection ^ PaperSources { System::Drawing::Printing::PrinterSettings::PaperSourceCollection ^ get(); };
public System.Drawing.Printing.PrinterSettings.PaperSourceCollection PaperSources { get; }
member this.PaperSources : System.Drawing.Printing.PrinterSettings.PaperSourceCollection
Public ReadOnly Property PaperSources As PrinterSettings.PaperSourceCollection

Valor de propiedad

PrinterSettings.PaperSourceCollection que representa las bandejas fuente de papel que se encuentran disponibles en esta impresora.

Ejemplos

En el ejemplo de código siguiente se rellena el comboPaperSource cuadro combinado con los orígenes de papel admitidos de la impresora. SourceName se identifica como la propiedad que proporciona la cadena de presentación para el elemento que se va a agregar a través de la DisplayMember propiedad del cuadro combinado. En el ejemplo se requiere que exista una PrintDocument variable denominada printDoc y que exista el cuadro combinado específico.

// Add list of paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display String*.
comboPaperSource->DisplayMember = "SourceName";
PaperSource^ pkSource;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSources->Count; i++ )
{
   pkSource = printDoc->PrinterSettings->PaperSources[ i ];
   comboPaperSource->Items->Add( pkSource );
}
// Add list of paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember="SourceName";

PaperSource pkSource;
for (int i = 0; i < printDoc.PrinterSettings.PaperSources.Count; i++){
    pkSource = printDoc.PrinterSettings.PaperSources[i];
    comboPaperSource.Items.Add(pkSource);
}
' Add list of paper sources found on the printer to the combo box.
' The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember = "SourceName"

Dim pkSource As PaperSource
For i = 0 to printDoc.PrinterSettings.PaperSources.Count - 1
    pkSource = printDoc.PrinterSettings.PaperSources.Item(i)
    comboPaperSource.Items.Add(pkSource)
Next

Comentarios

PrinterSettings.PaperSourceCollection contiene PaperSource instancias que representan las bandejas de origen de papel a través de la PaperSource.Kind propiedad , que contiene uno de los PaperSourceKind valores .

Normalmente, se establece el origen de papel de una página a través de la PageSettings.PaperSource propiedad en un válido PaperSource disponible a través de la PaperSources colección.

Se aplica a

Consulte también