PaperSource Klasse

Definition

Gibt den Papierschacht an, aus dem der Drucker das Papier einzieht.

public ref class PaperSource
public class PaperSource
[System.Serializable]
public class PaperSource
type PaperSource = class
[<System.Serializable>]
type PaperSource = class
Public Class PaperSource
Vererbung
PaperSource
Attribute

Beispiele

Im folgenden Codebeispiel wird das comboPaperSource Kombinationsfeld mit den vom Drucker unterstützten Papierquellen gefü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 bestimmte 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

Diese Klasse wird von PrinterSettings.PaperSources und PageSettings.PaperSource verwendet, um die Papierquellfächer abzurufen, die auf dem Drucker verfügbar sind, und um die Papierquelle für eine Seite festzulegen.

Weitere Informationen zum Drucken finden Sie in der System.Drawing.Printing Namespaceübersicht.

Konstruktoren

PaperSource()

Initialisiert eine neue Instanz der PaperSource-Klasse.

Eigenschaften

Kind

Ruft die Papierzufuhr ab.

RawKind

Ruft die ganze Zahl ab, die einen der PaperSourceKind-Werte oder einen benutzerdefinierten Wert darstellt, oder legt diese Zahl fest.

SourceName

Ruft den Namen der Papierzufuhr ab oder legt diesen fest.

Methoden

Equals(Object)

Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist.

(Geerbt von Object)
GetHashCode()

Fungiert als Standardhashfunktion.

(Geerbt von Object)
GetType()

Ruft den Type der aktuellen Instanz ab.

(Geerbt von Object)
MemberwiseClone()

Erstellt eine flache Kopie des aktuellen Object.

(Geerbt von Object)
ToString()

Stellt Informationen zu PaperSource als Zeichenfolge bereit.

Gilt für:

Weitere Informationen