Condividi tramite


PrinterSettings.PaperSourceCollection.Item[Int32] Proprietà

Definizione

Ottiene l'oggetto PaperSource in corrispondenza dell'indice specificato.

public:
 virtual property System::Drawing::Printing::PaperSource ^ default[int] { System::Drawing::Printing::PaperSource ^ get(int index); };
public virtual System.Drawing.Printing.PaperSource this[int index] { get; }
member this.Item(int) : System.Drawing.Printing.PaperSource
Default Public Overridable ReadOnly Property Item(index As Integer) As PaperSource

Parametri

index
Int32

Indice dell'oggetto PaperSource da ottenere.

Valore della proprietà

Oggetto PaperSource in corrispondenza dell'indice specificato.

Esempio

Nell'esempio di codice seguente viene popolata la comboPaperSource casella combinata con le origini di carta supportate dalla stampante. L'oggetto SourceName viene identificato come proprietà che fornisce la stringa di visualizzazione per l'elemento aggiunto tramite la DisplayMember proprietà della casella combinata. L'esempio richiede che esista una PrintDocument variabile denominata printDoc e che esista la casella combinata specifica.

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

Si applica a

Vedi anche