PrinterSettings.PaperSources Eigenschaft

Definition

Ruft die bei diesem Drucker verfügbaren Papierzufuhrschächte ab.

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

Eigenschaftswert

Eine PrinterSettings.PaperSourceCollection, die die verfügbaren Papierzufuhrschächte dieses Druckers darstellt.

Beispiele

Im folgenden Codebeispiel wird das comboPaperSource Kombinationsfeld mit den unterstützten Papierquellen des Druckers aufgefüllt. Wird SourceName als die Eigenschaft identifiziert, die die Anzeigezeichenfolge für das Element bereitstellt, das über die DisplayMember -Eigenschaft des Kombinationsfelds hinzugefügt wird. Das Beispiel erfordert, dass eine PrintDocument Variable mit dem Namen printDoc vorhanden ist und dass das spezifische Kombinationsfeld vorhanden ist.

// 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

Hinweise

Enthält PrinterSettings.PaperSourceCollectionPaperSource Instanzen, die die Papierquellfächer über die PaperSource.Kind -Eigenschaft darstellen, die einen der PaperSourceKind -Werte enthält.

In der Regel legen Sie die Papierquelle einer Seite über die PageSettings.PaperSource -Eigenschaft auf einen gültigen PaperSource fest, der über die PaperSources Sammlung verfügbar ist.

Gilt für:

Weitere Informationen